您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關css如何實現div一直旋轉的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
css實現div一直旋轉的方法:首先創建一個div元素,并給它一個id值;然后使用內聯樣式給div添加一些樣式;接著使用“@keyframes”規則創建一個動畫rotate;最后給div指定animation即可。
css實現div一直旋轉
1、首先創建一個div元素,并給它一個id值xuanzhuan,使用內聯樣式給div添加一些樣式。
<div id="xuanzhun" style="width: 30px; height: 30px; background-color: aquamarine;">
2、然后使用@keyframes規則創建一個動畫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; }
效果:
感謝各位的閱讀!關于“css如何實現div一直旋轉”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。