首页 > 代码库 > 太极图----三层div实现(非伪类)
太极图----三层div实现(非伪类)
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>太极</title>
<style class="cp-pen-styles">
*{
padding:0;
margin:0;
}
.outer{
background: linear-gradient(to bottom,white 50%,black 50%);
margin:100px auto;
width:400px;
height:400px;
border-radius: 50%;
position:relative;
border:1px solid black;
transition: all 5s ease;
}
.outer:hover{
transform: rotate(360deg) scale(2);
}
.outer .left{
background: white;
width:200px;
height:200px;
border-radius: 50%;
position:absolute;
left: 0;
top:100px;
}
.outer .left .leftInner{
background: black;
width:80px;
height:80px;
border-radius: 50%;
position:absolute;
left: 60px;
top:60px;
}
.outer .right{
background: black;
width:200px;
height:200px;
border-radius: 50%;
position:absolute;
right: 0;
top:100px;
}
.outer .right .rightInner{
background: white;
width:80px;
height:80px;
border-radius: 50%;
position:absolute;
left:60px;
top:60px;
}
</style>
</head>
<body>
<div class="outer">
<div class="left">
<div class="leftInner"></div>
</div>
<div class="right">
<div class="rightInner"></div>
</div>
</div>
</body>
</html>
太极图----三层div实现(非伪类)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。