CSS3圆环旋转效果
html结构:
<div class="demo"></div>
css结构:
.demo{ width:250px; height:250px; border:100px solid red; border-left-color:blue; border-right-color:yellow; border-top-color:#04f105; margin:100px; border-radius: 50%;/*圆角*/ -webkit-animation:circle 1s infinite linear; } @-webkit-keyframes circle{ 0% {transform:rotate(0deg);} 100% {transform:rotate(-360deg);} }
posted on 2017-06-01 14:44 平平淡淡summer 阅读(1867) 评论(0) 编辑 收藏 举报