立方体 透视 滚动效果
需鼠标移动到上面<!DOCTYPE html><html>
<head>
<meta charset="utf-8">
<title></title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
#box{
width: 600px;
height: 600px;
background-color: darkgray;
margin: auto;
position: relative;
perspective: 800px;
}
#box ul{
width: 300px;
height: 300px;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
transform-style: preserve-3d;
transition: all 8s;
}
ul li{
list-style: none;
color: hotpink;
}
#box ul li{
width: 300px;
height: 300px;
line-height: 300px;
font-size: 48px;
text-align: center;
position: absolute;
}
li:nth-child(1)
{
background: rgba(255,0,0,.5);
transform: translateY(-150px) rotateX(90deg);
}
li:nth-child(2)
{
background: rgba(0,0,255,.5);
transform: translateY(150px) rotateX(90deg);
}
li:nth-child(3)
{
background: rgba(0,255,0,.5);
transform: translateX(-150px) rotateY(90deg);
}
li:nth-child(4)
{
background: rgba(255,0,255,.5);
transform: translateX(150px) rotateY(90deg);
}
li:nth-child(5)
{
background: rgba(255,255,0,.5);
transform: translateZ(150px);
}
li:nth-child(6)
{
background: rgba(0,255,255,.5);
transform: translateZ(-150px);
}
#box ul:hover{
transform: rotateX(360deg) rotateY(360deg) ;
}
</style>
</head>
<body>
<div id="box">
<ul>
<li>上</li>
<li>下</li>
<li>左</li>
<li>右</li>
<li>前</li>
<li>后</li>
</ul>
</div>
</body>
</html>
听起来很高能的样子 _2_ 发表于 2019-9-7 20:39
听起来很高能的样子
让你失望没有点简单 我也不会太多 66666666 透视吗{:5_109:} kanyixia 学习一下 我来康康 瞧瞧看 wow,let我康康{:10_257:} 前方高能 学习 學習學習 很棒
6666666666 ??? 看起来很厉害 {:5_91:}
看看 想问一下,perspective是设置的什么属性啊?