值 | 描述 |
---|---|
linear | 勻速(等于 cubic-bezier(0,0,1,1)) |
ease | 從慢到快再到慢(cubic-bezier(0.25,0.1,0.25,1)) |
ease-in | 慢慢變快(等于 cubic-bezier(0.42,0,1,1)) |
ease-out | 慢慢變慢(等于 cubic-bezier(0,0,0.58,1)) |
ease-in-out | 先變快再到慢(等于 cubic-bezier(0.42,0,0.58,1)),漸顯漸隱效果 |
cubic-bezier(n,n,n,n) | 在 cubic-bezier 函數(shù)中定義自己的值。可能的值是 0 至 1 之間的數(shù)值 |
注意:并不是所有的屬性都能使用過渡的,如display:none<->display:block
舉個例子,實現(xiàn)鼠標移動上去發(fā)生變化動畫效果
<style> .base { width: 100px; height: 100px; display: inline-block; background-color: #0EA9FF; border-width: 5px; border-style: solid; border-color: #5daf34; transition-property: width, height, background-color, border-width; transition-duration: 2s; transition-timing-function: ease-in; transition-delay: 500ms; } /*簡寫*/ /*transition: all 2s ease-in 500ms;*/ .base:hover { width: 200px; height: 200px; background-color: #5daf34; border-width: 10px; border-color: #3a8ee6; } </style> <div ></div>
包含四個常用的功能:
一般配合transition過度使用
注意的是,transform不支持inline元素,使用前把它變成block
舉個例子
<style> .base { width: 100px; height: 100px; display: inline-block; background-color: #0EA9FF; border-width: 5px; border-style: solid; border-color: #5daf34; transition-property: width, height, background-color, border-width; transition-duration: 2s; transition-timing-function: ease-in; transition-delay: 500ms; } .base2 { transform: none; transition-property: transform; transition-delay: 5ms; } .base2:hover { transform: scale(0.8, 1.5) rotate(35deg) skew(5deg) translate(15px, 25px); } </style> <div ></div>
可以看到盒子發(fā)生了旋轉,傾斜,平移,放大
animation是由 8 個屬性的簡寫,分別如下:
屬性 | 描述 | 屬性值 |
---|---|---|
animation-duration | 指定動畫完成一個周期所需要時間,單位秒(s)或毫秒(ms),默認是 0 | |
animation-timing-function | 指定動畫計時函數(shù),即動畫的速度曲線,默認是 "ease" | linear、ease、ease-in、ease-out、ease-in-out |
animation-delay | 指定動畫延遲時間,即動畫何時開始,默認是 0 | |
animation-iteration-count | 指定動畫播放的次數(shù),默認是 1 | |
animation-direction 指定動畫播放的方向 | 默認是 normal | normal、reverse、alternate、alternate-reverse |
animation-fill-mode | 指定動畫填充模式。默認是 none | forwards、backwards、both |
animation-play-state | 指定動畫播放狀態(tài),正在運行或暫停。默認是 running | running、pauser |
animation-name | 指定 @keyframes 動畫的名稱 |
CSS 動畫只需要定義一些關鍵的幀,而其余的幀,瀏覽器會根據(jù)計時函數(shù)插值計算出來,
通過 @keyframes 來定義關鍵幀
因此,如果我們想要讓元素旋轉一圈,只需要定義開始和結束兩幀即可:
@keyframes rotate{ from{ transform: rotate(0deg); } to{ transform: rotate(360deg); } }
from 表示最開始的那一幀,to 表示結束時的那一幀
也可以使用百分比刻畫生命周期
@keyframes rotate{ 0%{ transform: rotate(0deg); } 50%{ transform: rotate(180deg); } 100%{ transform: rotate(360deg); } }
定義好了關鍵幀后,下來就可以直接用它了:
animation: rotate 2s;
屬性 | 含義 |
---|---|
transition(過度) | 用于設置元素的樣式過度,和animation有著類似的效果,但細節(jié)上有很大的不同 |
transform(變形) | 用于元素進行旋轉、縮放、移動或傾斜,和設置樣式的動畫并沒有什么關系,就相當于color一樣用來設置元素的“外表” |
translate(移動) | 只是transform的一個屬性值,即移動 |
animation(動畫) | 用于設置動畫屬性,他是一個簡寫的屬性,包含6個屬性 |
以上就是CSS3常見動畫的實現(xiàn)方式的詳細內容,更多關于CSS3 動畫的實現(xiàn)的資料請關注腳本之家其它相關文章!
下一篇:CSS3 制作的圖片滾動效果