您好,登錄后才能下訂單哦!
小編給大家分享一下css3怎么實(shí)現(xiàn)圖片旋轉(zhuǎn)動(dòng)畫(huà)效果,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!
實(shí)現(xiàn)css3中圖片的旋轉(zhuǎn)可以使用可以使用 -webkit-animation 和 @-webkit-keyframes 組合使用來(lái)完成。
-webkit-animation 是一個(gè)復(fù)合屬性,定義如下:
-webkit-animation: name duration timing-function delay iteration_count direction;
name: 是 @-webkit-keyframes 中需要指定的方法,用來(lái)執(zhí)行動(dòng)畫(huà)。
duration: 動(dòng)畫(huà)一個(gè)周期執(zhí)行的時(shí)長(zhǎng)。
timing-function: 動(dòng)畫(huà)執(zhí)行的效果,可以是線性的,也可以是"快速進(jìn)入慢速出來(lái)"等。
delay: 動(dòng)畫(huà)延時(shí)執(zhí)行的時(shí)長(zhǎng)。
iteration_count: 動(dòng)畫(huà)循環(huán)執(zhí)行次數(shù),如果是infinite,則無(wú)限執(zhí)行。
direction: 動(dòng)畫(huà)執(zhí)行方向。
@-webkit-keyframes 中的from和to 兩個(gè)屬性,就是指定動(dòng)畫(huà)執(zhí)行的初始值和結(jié)束值。
-webkit-animation-play-state:paused; 暫停動(dòng)畫(huà)的執(zhí)行。
在了解了css3實(shí)現(xiàn)圖片旋轉(zhuǎn)所用到的屬性值后,我們來(lái)直接看css3實(shí)現(xiàn)圖片旋轉(zhuǎn)動(dòng)畫(huà)的代碼:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>transform</title> <style> #loader { display: block; position: relative; -webkit-animation: spin 2s linear infinite; animation: spin 2s linear infinite; } @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes spin { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg); } } </style> </head> <body> <div id="test" > <img src="http://img4.imgtn.bdimg.com/it/u=3413495237,2076545415&fm=26&gp=0.jpg" style="width:250px;height:250px" id="loader" /> </div> </body> </html>
看完了這篇文章,相信你對(duì)css3怎么實(shí)現(xiàn)圖片旋轉(zhuǎn)動(dòng)畫(huà)效果有了一定的了解,想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。