用css样式形成太极图

本文介绍了一种使用CSS border-radius属性来绘制太极图的方法。通过设置不同元素的背景颜色及边框弧度,实现了太极图的视觉效果。文章提供了一个简单的HTML页面示例,展示了如何仅用CSS就能创建出美观且响应式的太极图案。
摘要由CSDN通过智能技术生成
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<style type="text/css">
body {
    background: #9999cc;
}
.as1 {
    width: 400px; height: 400px;    /* 太极图大小 */
    box-shadow: 0px 0px 10px 1px #ffff00;
}
.as1 , .ar2 , .at1{
    background: #ffffff;
}
.as2 , .ar1 , .at2 {
    background: #000000;
}
 
.as1 , .as1 div {
    position: relative;
    border-radius: 8000px;
}
.as2.as2 {
    width: 50%; height: 100%;
    border-radius: 8000px 0px 0px 8000px;
}
.ar1 , .ar2 {
    left: 50%; width: 100%; height: 50%;
}
.at1 , .at2 {
    left: 35%; top: 35%; width: 30%; height: 30%;
}
</style>
</head>
<body>
用border-radius绘制太极图
<br /><br />
 
<div class="as1">
<div class="as2">
    <div class="ar1"><div class="at1"></div></div>
    <div class="ar2"><div class="at2"></div></div>
</div>
</div>
</body>
</html>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值