<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
margin: 0;
padding: 0;
}
ul{
width: 200px;
height: 200px;
background: red;
margin: 0 auto ;
margin-top: 200px;
position: relative;
animation: run 3s linear infinite;
animation-fill-mode: forwards;
transform-style: preserve-3d;
}
li{
float: left;
width: 200px;
height: 200px;
background: red;
list-style: none;
position: absolute;
left: 0;
/* opacity: 0.5;*/
top: 0;
}
@keyframes run {
0%{
transform: rotateX(0deg) rotateY(0deg);
}
100%{
transform: rotateX(360deg) rotateY(360deg);
}
}
ul li:first-child{
transform:translateY(100px) rotateX(90deg);
background: rebeccapurple;
}
ul li:nth-child(2){
transform: translateX(100px) rotateY(90deg);
background: green;
}
ul li:nth-child(3){
transform: translateY(-100px) rotateX(90deg);
background: red;
}
ul li:nth-child(4){
transform: translateX(-100px) rotateY(90deg);
background: yellow;
}
ul li:nth-child(5){
transform: translateZ(-100px);
background: fuchsia;
}
ul li:nth-child(6){
transform: translateZ(100px);
background: #13FFEF;
}
</style>
</head>
<body>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
</body>
</html>HTML5实习的3D的动画效果
最新推荐文章于 2025-08-08 10:57:36 发布
本文介绍了一个使用 CSS 实现的 3D 旋转立方体效果,通过设置不同的变换属性,使得一个由六个面组成的立方体能够在网页中进行平滑的 3D 旋转动画展示。

2293

被折叠的 条评论
为什么被折叠?



