在網(wǎng)站的設(shè)計(jì)搭建中,我們可以給圖片增加一些效果讓網(wǎng)頁(yè)變得更加靈動(dòng),比如當(dāng)一張圖片是圓形時(shí),我們可以給圖片增加一個(gè)旋轉(zhuǎn)的效果。
<style>
.zz-comp-logo .logo__wrapper {
-webkit-animation: spin 100s linear infinite;
animation: spin 3s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
transition: all 2s;
}
</style>
<style>
._13lcldp8co000 .zz-comp-list__item .img img {
-webkit-animation: spin 3s linear infinite;
animation: spin 3s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
transition: all 2s;
}
</style>
好了,今天的小教程就到這里了,我們下期再見(jiàn)吧!
常見(jiàn)問(wèn)題