我什至不介意如何创建它。有任何想法吗?
问问题
35 次
1 回答
1
使用下面的代码实现阴影效果。最好使用 css 而不是图像来获得阴影效果。因为 css 易于创建、编辑和快速加载。与 css 相比,图像不容易创建、编辑和快速加载。
<div class="box effect2">
<h3>Effect 2</h3>
</div>
.box h3{
text-align:center;
position:relative;
top:80px;
}
.box {
width:70%;
height:200px;
background:#FFF;
margin:40px auto;
}
/*==================================================
* Effect 2
* ===============================================*/
.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;
}
于 2016-04-16T06:39:53.647 回答