1 Star 0 Fork 0

催眠曲/Web练习

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
立方体.html 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
催眠曲 提交于 2018-10-25 20:33 . first commit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
.box{
width: 300px;
height: 300px;
margin: 100px auto;
position: relative;
transform-style: preserve-3d;
/*perspective: 500px;*/
transform: rotate3d(1,1,0,-30deg);
}
.box>div{
width: 300px;
height: 300px;
position: absolute;
opacity: 0.5;
}
.front{
background-color: red;
transform: translateZ(150px);
}
.back{
background-color: orange;
transform: translateZ(-150px);
}
.left{
background-color: yellow;
transform: translateX(-150px) rotateY(90deg);
}
.right{
background-color: green;
transform: translateX(150px) rotateY(90deg);
}
.top{
background-color: blue;
transform: translateY(-150px) rotateX(90deg);
}
.bottom{
background-color: purple;
transform: translateY(150px) rotateX(90deg);
}
</style>
</head>
<body>
<div class="box">
<div class="front">front</div>
<div class="back">back</div>
<div class="left">left</div>
<div class="right">right</div>
<div class="top">top</div>
<div class="bottom">bottom</div>
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/myzgd/web_practice.git
[email protected]:myzgd/web_practice.git
myzgd
web_practice
Web练习
master

搜索帮助