您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)css如何實(shí)現(xiàn)div一直旋轉(zhuǎn)的內(nèi)容。小編覺(jué)得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過(guò)來(lái)看看吧。
css實(shí)現(xiàn)div一直旋轉(zhuǎn)的方法:首先創(chuàng)建一個(gè)div元素,并給它一個(gè)id值;然后使用內(nèi)聯(lián)樣式給div添加一些樣式;接著使用“@keyframes”規(guī)則創(chuàng)建一個(gè)動(dòng)畫rotate;最后給div指定animation即可。
css實(shí)現(xiàn)div一直旋轉(zhuǎn)
1、首先創(chuàng)建一個(gè)div元素,并給它一個(gè)id值xuanzhuan,使用內(nèi)聯(lián)樣式給div添加一些樣式。
<div id="xuanzhun" style="width: 30px; height: 30px; background-color: aquamarine;">
2、然后使用@keyframes規(guī)則創(chuàng)建一個(gè)動(dòng)畫rotate
@-webkit-keyframes rotate{ from{-webkit-transform: rotate(0deg)} to{-webkit-transform: rotate(360deg)} } @-moz-keyframes rotate{ from{-moz-transform: rotate(0deg)} to{-moz-transform: rotate(359deg)} } @-o-keyframes rotate{ from{-o-transform: rotate(0deg)} to{-o-transform: rotate(359deg)} } @keyframes rotate{ from{transform: rotate(0deg)} to{transform: rotate(359deg)} }
3、最后,給div指定animation即可。
#xuanzhun{ -webkit-transition-property: -webkit-transform; -webkit-transition-duration: 1s; -moz-transition-property: -moz-transform; -moz-transition-duration: 1s; -webkit-animation: rotate 3s linear infinite; -moz-animation: rotate 3s linear infinite; -o-animation: rotate 3s linear infinite; animation: rotate 3s linear infinite; }
效果:
感謝各位的閱讀!關(guān)于“css如何實(shí)現(xiàn)div一直旋轉(zhuǎn)”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!
免責(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)容。