CSS 3 過渡css
=====================================================================================html
過渡---一個元素在不一樣狀態之間進行平滑的轉換,CSS 3 中使用transition屬性實現過渡效果。ide
transition :過渡屬性 執行時間 時間函數 延時時間;函數
時間函數---設置元素運動的速度spa
(1)貝塞爾曲線 cubic-bezier(p1(x,y),p2(x,y))orm
預約義貝塞爾曲線:htm
ease(默認值)blog
linearget
ease-init
ease-out
ease-in-out
(2) steps()
step-start //步數爲一
step-end
=======================================================================================================================================================================================
示例一:
img:hover{ transform: translate(600px); } img{ transition:2s cubic-bezier(0.6,0.1,0.1,0.7); }
示例二:
<style> div:hover img{ transform:translate(300px); } .i01{ transition:2s steps(3,start); } .i02{ transition:2s steps(3,end); } .i03{ transition:2s linear; } </style>
<div> <img src="p_w_picpaths/caffe-1.jpg" alt="" class="i01"/><br/> <img src="p_w_picpaths/caffe-2.jpg" alt="" class="i02"/><br/> <img src="p_w_picpaths/caffe-3.jpg" alt="" class="i03"/> </div>
===========transition屬性的每一步均可以用單獨的屬性表示
transition: all 2s linear 3s;
transition-property: all; transition-duration: 2s; transition-timing-function: linear; transition-delay: 3s;