本帖最后由 clearwater 于 2020-1-27 07:30 编辑
求水神和毒舌绕路走。
我在跟某马的前端视频学习。其中一个视频讲到旋转木马或旋转狗。其中的原理和代码我好象基本都懂了。
我有一个问题就是为什么狗狗的照片的内侧,能看到狗狗的样子。正常的照片,正面是动物,背面是白的;而在本案例中,为什么好象狗的正面和反面都能看到狗的样子?
是不是在网页的编程中,照片默认正反两都是一样的?
我把代码贴在本帖中,也贴在一个可以在线查看代码的网页(见下面URL),也上传到百度云(百度云里面有照片)
https://codepen.io/iwater/pen/povYgYx
链接:https://pan.baidu.com/s/1BaOtbZKcQ1q-EgV1yTyuvw
提取码:m264
[HTML] 纯文本查看 复制代码 <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
body {
perspective: 1000px;
}
section {
position: relative;
width: 300px;
height: 200px;
margin: 150px auto;
transform-style: preserve-3d;
/* 添加动画效果 */
animation: rotate 10s linear infinite;
background: url(media/pig.jpg) no-repeat;
}
section:hover {
/* 鼠标放入section 停止动画 */
animation-play-state: paused;
}
@keyframes rotate {
0% {
transform: rotateY(0);
}
100% {
transform: rotateY(360deg);
}
}
section div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url(media/dog.jpg) no-repeat;
}
section div:nth-child(1) {
transform: rotateY(0) translateZ(300px);
}
section div:nth-child(2) {
/* 先旋转好了再 移动距离 */
transform: rotateY(60deg) translateZ(300px);
}
section div:nth-child(3) {
/* 先旋转好了再 移动距离 */
transform: rotateY(120deg) translateZ(300px);
}
section div:nth-child(4) {
/* 先旋转好了再 移动距离 */
transform: rotateY(180deg) translateZ(300px);
}
section div:nth-child(5) {
/* 先旋转好了再 移动距离 */
transform: rotateY(240deg) translateZ(300px);
}
section div:nth-child(6) {
/* 先旋转好了再 移动距离 */
transform: rotateY(300deg) translateZ(300px);
}
</style>
</head>
<body>
<section>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</section>
</body>
</html>
|