我正在处理 css3 3D 页面,我想通过透明 div 显示阴影,但我无法让它工作......
我不能使用跨度或任何东西,因为它需要是同一个对象,因为jquery 动画。
基本的 div 样式:
#Div3{
position:absolute;
border:1px solid white;
border-radius:10px;
transition: all 1s;
background:transparent;
pointer-events: none;
}
位置+阴影+变换的附加类:
.P3{
top:22.5%;
bottom:25%;
right:25%;
height:55%;
width:20%;
margin-right:-10%;
box-shadow:10px 0px 15px rgba(255,255,255,0.6);
transform: perspective( 1000px ) rotateY( 330deg );
-webkit-transform: perspective( 1000px ) rotateY( 330deg );
}
结果:
背景设置为透明,但不会显示其背后的盒子阴影,
- box-shadow 是否只为对象的轮廓生成阴影?
- 有没有办法使用css让它可见?