跳到主要內容

CSS3 基本動畫

有時只是想要一個小小的淡入淡出動畫效果,可以使用以下的語法

-webkit-transition: all 0.3s ease-out 0s;

-moz-transition: all 0.3s ease-out 0s;

-ms-transition: all 0.3s ease-out 0s;

-o-transition: all 0.3s ease-out 0s;

transition: all 0.3s ease-out 0s; 

可以加在 a 和 a:hover 兩個地方,那麼在滑入和滑出時都會有效果

不要問我為什麼要短短的一個淡入淡出動畫,就要寫這麼多行,其實只有一行啦!就是最後一行,另外四行有在玩 CSS 的應該都知道那是什麼東東吧?