c3实现无限旋转

一直以为网易云音乐的那个转盘挺难实现的,接触了c3之后,发现,这简单到令人发指

 

html:部分

 

css:部分

#xuanzhun{

animation: rotate 3s linear infinite;

}

@keyframes rotate{

from{transform: rotate(0deg)}

to{transform: rotate(359deg)}

}

div {

background-image: url("http://www.taopic.com/uploads/allimg/140113/267874-1401130T5468.jpg");

background-size: 100%;

width: 200px;

height: 200px;

background-color: aquamarine;

margin: 0 auto;

border-radius: 50%;

}

 

 

 

你可能感兴趣的:(c3实现无限旋转)