css样式代码
.animation{
width: 800px;
height: 800px;
border: 1px solid #000;
}
#canvas{
animation: rotate 6s linear infinite;
}
/* 给太极图设置旋转动画 */
@keyframes rotate{
0%{
transform: none;
}
100%{
transform: rotate(360deg);
}
}
javascript代码
//文档加载完毕后执行函数
[removed] = function(){