最新回答 / 慕后端6030786
初始化設置圖片的透明度opacity為1,然后點擊的時候添加transition過度效果,將opacity改為0;transition: opacity 1s linear;
2018-09-20
.spinner{
border-radius:50%;
-webkit-animation:load 1.1s infinite linear;
}
@-webkit-keyframes load{
from{
transform:rotate(0deg);
}
to{
transform:rotate(360deg);
}
}
border-radius:50%;
-webkit-animation:load 1.1s infinite linear;
}
@-webkit-keyframes load{
from{
transform:rotate(0deg);
}
to{
transform:rotate(360deg);
}
}
2018-08-07