html太极图代码静态
时间: 2023-11-29 22:43:56 浏览: 167
这是一个使用HTML和CSS实现的太极图代码。太极图是中国传统哲学中的一个重要概念,代表着阴阳两极的相互转化和平衡。这个代码使用了HTML中的div标签和CSS中的样式属性来实现太极图的效果。其中,div标签的class属性为“yinyang”,对应的CSS样式属性包括宽度、高度、边框、边框宽度、边框圆角、位置、光标和过渡效果等。通过设置:before和:after伪元素的样式属性,实现了太极图中阴阳两极的黑白分明。当鼠标悬停在太极图上时,通过设置:hover伪类的样式属性,实现了太极图的旋转效果。
代码如下:
```
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>阴阳</title>
<style>
.yinyang {
width: 200px;
height: 99px;
border:1px solid #000;
border-bottom-width: 100px;
border-radius: 100px;
position: relative;
cursor: pointer;
transition: 100s;
}
.yinyang:hover {
/*旋转*/
transform: rotate(200000deg);
}
.yinyang:before {
content: "";
position: absolute;
width: 20px;
height: 20px;
border:40px solid #000;
left: 0;
top: 50px;
border-radius: 50px;
background: #fff;
}
.yinyang:after {
content: "";
position: absolute;
width: 20px;
height: 20px;
border:40px solid #fff;
right: 0;
top: 50px;
border-radius: 50px;
background: #000;
}
</style>
</head>
<body>
<div class="yinyang"></div>
</body>
</html>
```
阅读全文