簡體   English   中英

我怎樣才能做到? (陰影CSS3)

[英]How can I make it? (Shadows CSS3)

在此處輸入圖片說明

我什至不介意我如何創建它。 有任何想法嗎?

使用下面的代碼來實現陰影效果。 使用 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;
}

參考鏈接

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM