在CSS中創(chuàng)建兩個(gè)動(dòng)態(tài)圓環(huán),可以通過(guò)使用@keyframes
規(guī)則來(lái)實(shí)現(xiàn),下面是一個(gè)示例代碼,展示了如何創(chuàng)建兩個(gè)相交的動(dòng)態(tài)圓環(huán):
<!DOCTYPE html> <html> <head> <style> @keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } } .circle { position: relative; width: 200px; height: 200px; border-radius: 50%; background-color: #3498db; animation: rotate 2s linear infinite; } .circle:before, .circle:after { content: ""; position: absolute; width: 100px; height: 100px; border-radius: 50%; background-color: #e74c3c; animation: rotate 2s linear infinite; } .circle:before { top: 50px; left: 0; } .circle:after { top: 0; right: 50px; } </style> </head> <body> <div class="circle"></div> </body> </html>
在這個(gè)示例中,我們創(chuàng)建了一個(gè)主圓環(huán)和兩個(gè)子圓環(huán),主圓環(huán)通過(guò)@keyframes
規(guī)則實(shí)現(xiàn)了360度的旋轉(zhuǎn)動(dòng)畫(huà),子圓環(huán)則通過(guò)偽元素before
和after
分別實(shí)現(xiàn)了從左側(cè)和右側(cè)開(kāi)始的旋轉(zhuǎn)動(dòng)畫(huà),通過(guò)調(diào)整子圓環(huán)的位置,我們可以控制它們與主圓環(huán)的相交位置,這種方法可以創(chuàng)建出多種動(dòng)態(tài)效果,使得網(wǎng)頁(yè)更加生動(dòng)和有趣。