我正在制作3D旋转木马。这是我的代码:3D Carousel。
#wrapper{
width:420px;
height:279px;
position:relative;
margin:40px auto 40px auto;
-webkit-perspective: 800px;
perspective: 800px;
}
.carrousel{
position:absolute;
width:100%;
height:266px;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transition: all 1s;
-moz-transition: all 1s;
transition: all 1s;
}
.plan{
position:absolute;
height: 100%;
width: 400px;
text-align:center;
line-height: 60px;
font-size: 24px;
color:#FFF;
top:100px;
left: 5px;
opacity: 1
}
首先你可以看到我的旋转木马然后想要显示的图片。
我想知道为什么我的照片和文字模糊不清?
我在不同的课程中尝试过很多CSS属性,例如 backface-visibility 或 -webkit-font-smoothing 。但我总是有同样的问题,图片和文字都很模糊。
有没有人知道正确显示它的解决方案?
非常感谢!