我该怎么做? (阴影CSS3)

时间:2016-04-15 18:50:02

标签: css3 shadows

enter image description here

我甚至不介意如何创造它。有什么想法吗?

1 个答案:

答案 0 :(得分: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;
}

Reference Link