博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单的做一个旋转正六面体吧
阅读量:5233 次
发布时间:2019-06-14

本文共 1373 字,大约阅读时间需要 4 分钟。

<!DOCTYPE html>

<html>
<head>
<meta charset="utf-8" />
<title></title>
<style type="text/css">
body{
perspective: 2000px;
background: black;
}
.wrap{
transform-style: preserve-3d;
width: 300px;height: 300px;
margin: 180px auto;
position: relative;
animation: move 8s infinite ;
}
.wrap div{
width: 300px;height: 300px;
position: absolute;
opacity: 0.8;
}
.wrap div:nth-child(1){
transform: translateZ(-150px);
}
.wrap div:nth-child(2){
transform: translateZ(150px);
}
.wrap div:nth-child(3){
transform: rotateX(90deg) translateZ(150px);
}
.wrap div:nth-child(4){
transform: rotateX(90deg) translateZ(-150px);
}
.wrap div:nth-child(5){
transform: rotateY(90deg) translateZ(150px);
}
.wrap div:nth-child(6){
transform: rotateY(90deg) translateZ(-150px);
}
/*.wrap:hover{
transform: rotateY(360deg) rotateX(360deg);
}*/
@keyframes move{
0%{transform: rotateY(0) rotateX(0);}

50%{transform: rotateY(360deg) rotateX(360deg);}

}
div img{
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div class="wrap">
<div class="div1"><img src="image/1.jpg"/></div>
<div class="div2"><img src="image/2.jpg"/></div>
<div class="div3"><img src="image/3.jpg"/></div>
<div class="div4"><img src="image/4.jpg"/></div>
<div class="div5"><img src="image/5.jpg"/></div>
<div class="div6"><img src="image/6.jpg"/></div>
</div>
</body>
</html>

转载于:https://www.cnblogs.com/Masterlei/p/5730440.html

你可能感兴趣的文章
洛谷P2777
查看>>
PHPStorm2017设置字体与设置浏览器访问
查看>>
SQL查询总结 - wanglei
查看>>
安装cocoa pods时出现Operation not permitted - /usr/bin/xcodeproj的问题
查看>>
GIT笔记:将项目发布到码云
查看>>
JavaScript:学习笔记(7)——VAR、LET、CONST三种变量声明的区别
查看>>
JavaScript 鸭子模型
查看>>
SQL Server 如何查询表定义的列和索引信息
查看>>
GCD 之线程死锁
查看>>
NoSQL数据库常见分类
查看>>
一题多解 之 Bat
查看>>
Java 内部类
查看>>
{面试题7: 使用两个队列实现一个栈}
查看>>
【练习】使用事务和锁定语句
查看>>
centos7升级firefox的flash插件
查看>>
Apache Common-IO 使用
查看>>
评价意见整合
查看>>
二、create-react-app自定义配置
查看>>
Android PullToRefreshExpandableListView的点击事件
查看>>
系统的横向结构(AOP)
查看>>