用HTML和CSS完成一个八卦图案
以下是一个简单的八卦图案的HTML和CSS代码示例:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bagua Pattern</title>
<style>
.bagua {
position: relative;
width: 200px;
height: 200px;
border: 4px solid black;
border-radius: 50%;
margin: 50px auto;
}
.bagua:before, .bagua:after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.bagua:before {
width: 100px;
height: 150px;
background-color: black;
border-radius: 0 0 50% 50%;
}
.bagua:after {
width: 150px;
height: 100px;
background-color: black;
border-radius: 50% 0 0 0;
transform: translate(-50%, -50%) rotate(45deg);
}
</style>
</head>
<body>
<div class="bagua"></div>
</body>
</html>
这段代码创建了一个类.bagua
,它用CSS伪元素:before
和:after
形成了八卦图案。.bagua
类定义了一个圆形的容器,并设置了边框和尺寸。伪元素用不同的尺寸、背景色和边径创建了八卦图案的两个部分。
评论已关闭