这是我想要的效果CSS effect
我在我的wordpress主题的页面中尝试了这个,但没有工作。情况如下: 当我取消z-index时,带阴影的旋转框条会到达该区域的正面,但当我将其向后转动时,阴影就会消失,旋转的条形图消失。此效果背后的场景是将旋转的条隐藏在背景区域后面,同时仅显示阴影。有什么解决方案吗? 这是代码:
HTML
<div class="box effect1">
<h3>Effect 1</h3>
CSS
.box h3
{
text-align:center;
position:relative;
top:80px;
}
.box
{
width:70%;
height:200px;
background:#FFF;
margin:40px auto;
}
.effect2
{
position: relative;
}
.effect2:before, .effect2:after
{
z-index: -1;
position: absolute;
content: "";
bottom: 15px;
left: 10px;
width: 50%;
top: 80%;
max-width:300px;
background: #777;
box-shadow: 0 15px 10px #777;
transform: rotate(-3deg);
}
.effect2:after
{
transform: rotate(3deg);
right: 10px;
left: auto;
}