1. 程式人生 > >CSS3的過渡屬性

CSS3的過渡屬性

lin function rop near idt 開始 ase mage wid


關於transition-timing-function,它有如下關鍵字:

ease: 開始和結束慢,中間快。相當於cubic-bezier(0.25,0.1,0.25,1)
linear: 勻速。相當於cubic-bezier(0,0,1,1)
ease-in: 開始慢。相當於cubic-bezier(0.42,0,1,1)
ease-out: 結束慢。相當於cubic-bezier(0,0,0.58,1)
ease-in-out: 和ease類似,但比ease幅度大。相當於cubic-bezier(0.42,0,0.58,1)
step-start: 直接位於結束處。相當於steps(1,start)
step-end: 位於開始處經過時間間隔後結束。相當於steps(1,end)


關於transition-property,它有類似關鍵字:
none
all
width
height
background-image

CSS3的過渡屬性