在CSS中,我們可以使用animation
屬性來讓盒子一直旋轉(zhuǎn)。animation
屬性允許我們定義動(dòng)畫的名稱、持續(xù)時(shí)間、延遲時(shí)間、循環(huán)次數(shù)等,為了讓盒子旋轉(zhuǎn),我們可以使用rotate
函數(shù)來定義動(dòng)畫的關(guān)鍵幀,這樣盒子就可以按照我們定義的路徑旋轉(zhuǎn)了。
下面是一個(gè)簡單的例子,展示如何使用CSS讓盒子一直旋轉(zhuǎn):
.box { width: 100px; height: 100px; background-color: #333; position: relative; animation: rotate 2s linear infinite; } @keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
在這個(gè)例子中,我們定義了一個(gè)名為rotate
的動(dòng)畫,持續(xù)時(shí)間為2秒,線性過渡,并且設(shè)置為無限循環(huán),在動(dòng)畫的關(guān)鍵幀中,我們使用了transform
屬性來讓盒子從0度旋轉(zhuǎn)到360度,這樣,盒子就會(huì)一直按照定義的路徑旋轉(zhuǎn)了。