htm5+css3绘制立体面环形旋转
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<title>立体布局</title>
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
border: 0;
}
/* 加入远近关系,使画面更真实,防止两边旋转90度面不显示 */
body{
perspective: 1000px;
}
.box{
width: 200px;
height: 200px;
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
margin: auto;
transform-style: preserve-3d;
transform: rotate3d(1, 0, 0, -30deg);
transform-style: preserve-3d;
animation: donghua 5s 0.2s linear infinite;
/* 加入远近关系之后,增加距离顶部高度 */
margin-top: 200px;
}
@keyframes donghua {
0% {
transform: rotateX(0);
}
100% {
transform: rotateX(360deg);
}
}
.box div{
width: 100px;
height: 200px;
font-size: 5em;
text-align: center;
position: absolute;
line-height: 200px;
}
.box div:nth-child(1){
border: 10px solid red;
}
.box div:nth-child(2){
background-color: rgb(255, 238, 0);
transform: translateZ(200px);
}
.box div:nth-child(3){
background-color: rgb(255, 187, 0);
transform: translateZ(-200px);
}
.box div:nth-child(4){
background-color: rgb(60, 255, 0);
transform: translateZ(175px) translateX(100px) rotateY(30deg);
}
.box div:nth-child(5){
background-color: rgb(60, 134, 85);
transform: translateZ(100px) translateX(175px) rotateY(60deg);
}
.box div:nth-child(6){
background-color: rgb(0, 255, 234);
transform: translateX(200px) rotateY(90deg);
}
.box div:nth-child(7){
background-color: rgb(0, 204, 255);
transform: translateX(-200px) rotateY(90deg);
}
.box div:nth-child(8){
background-color: rgb(0, 110, 255);
transform: translateZ(175px) translateX(-100px) rotateY(-30deg);
}
.box div:nth-child(9){
background-color: rgb(111, 0, 255);
transform: translateZ(100px) translateX(-175px) rotateY(-60deg);
}
.box div:nth-child(10){
background-color: rgb(255, 0, 200);
transform: translateZ(-175px) translateX(-100px) rotateY(30deg);
}
.box div:nth-child(11){
background-color: rgb(255, 0, 98);
transform: translateZ(-175px) translateX(100px) rotateY(-30deg);
}
.box div:nth-child(12){
background-color: rgb(0, 225, 255);
transform: translateZ(-100px) translateX(-175px) rotateY(60deg);
}
.box div:nth-child(13){
background-color: rgb(43, 37, 4);
transform: translateZ(-100px) translateX(175px) rotateY(-60deg);
}
</style>
</head>
<body>
<div class="box">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>
评论 (0)