其他分享
首页 > 其他分享> > css 让图片不停的转动

css 让图片不停的转动

作者:互联网

例如:让下面的图形不停的转动

css也能实现这样的效果,下面直接贴代码,希望能帮助需要的朋友

<div class="gif_pic">
    <img class="add_pic img" src="loading.png" width="100" height= "100" /> .
    <div class="loading_gif_text">正在识别中...</div>
</div>

.gif_pic{
     text-align: center ;
    margin-top: 100px; 
 }
@-webkit-keyframes rotation{
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg); }
}
.add_pic{
    -webkit- transform: rotate (360deg);
    animation: rotation 1s linear infinite;
    - moz -animation: rotation 1s linear infinite;
    -webkit - animation: rotation 1s linear infinite ;
    -o-animation: rotation 1s linear infinite;
}
.img{ border- radius: 250px;}
.loading_gif_text{
    margin-top: 20px;
    color: #00b0ff;
    font-size: 16px;
}

注意旋转的快慢可以通过.add_pic里面的时间来控制

 

 

标签:1s,linear,转动,infinite,animation,webkit,不停,rotation,css
来源: https://blog.csdn.net/leoly612200/article/details/110678933