首頁 > web前端 > css教學 > 主體

用CSS3做出逐漸發光的方格邊框實現步驟

php中世界最好的语言
發布: 2017-11-30 10:24:49
原創
1495 人瀏覽過

我們知道,如果使用偽元素來實現邊框逐漸發光的程式碼,會用到scale和opacity這兩個屬性,那麼今天就來實現一個CSS3做出逐漸發光的方格邊框的案列,幫助大家更好的了解CSS3,一起來看看。

Html程式碼

<div>
         <img src="http://tva2.sinaimg.cn/crop.0.0.180.180.180/6830a53bjw8f2qo4xzc2zj20500500t0.jpg"/>
         <div>
                   <p>CSS3 逐渐发光的方格边框</p>
                   <p>CSS3 逐渐发光的方格边框</p>
         </div>
</div>
Css代码
.light{
         background: #fff;
         width: 180px;
         height: 180px;
         margin: 100px auto;
         position: relative;
         text-align: center;
         color: #333;
         transform:translate3d(0,0,0);
 
}
.light-inner{
         padding: 60px 30px 0;
         pointer-events: none;
         position: absolute;
         left: 0;
         top: 0;
         bottom: 0;
         right: 0;
         text-align: center;
         transition: background 0.35s;
         backface-visibility: hidden;
}
.light-inner:before, .light-inner:after{
         display: block;
         content: "";
         position: absolute;
         left: 30px;
         top: 30px;
         right: 30px;
         bottom: 30px;
         border: 1px solid #fff;
         opacity: 0;
         transition: opacity 0.35s, transform 0.35s;
}
.light-inner:before{
         border-left: 0;
         border-right: 0;
         transform:scaleX(0,1);
}
.light-inner:after{
         border-top: 0;
         border-bottom: 0;
         transform: scaleY(1,0);
}
.light:hover .light-inner{
         background: #458fd2
}
.light:hover .light-inner:before, .light:hover .light-inner:after{
         opacity: 1;
         transform: scale3d(1,1,1);
}
 
.light-inner p{
         transition: opacity .35s, transform 0.35s;
         transform: translate3d(0,20px,0);
         color: #fff;
         opacity: 0;
         line-height: 30px;
}
.light:hover .light-inner p{
         transform: translate3d(0,0,0);
         opacity: 1;
}
登入後複製


相信看了這些案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

相關閱讀:

HTML裡需要相容驗證的瀏覽器有哪些

仿途牛旅遊網廣告動畫特效教學

HTML網頁優化壓縮的實作步驟

以上是用CSS3做出逐漸發光的方格邊框實現步驟的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!