div+css实现太极阴阳八卦旋转动画效果代码
代码语言:html
所属分类:动画
代码描述:div+css实现太极阴阳八卦旋转动画效果代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
#yin-yang {
width: 96px;
box-sizing: content-box;
height: 48px;
background: #eee;
border-color: #000;
border-style: solid;
border-width: 2px 2px 50px 2px;
border-radius: 100%;
position: relative;
top:50%;
left:50%;
transform:translate(-50px, calc(50vh - 50%)) rotate(
-1260deg);
animation:rotateMe 3569ms linear infinite;
box-shad.........完整代码请登录后点击上方下载按钮下载查看
网友评论0