最新回答 / 慕后端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