css動態邊框效果
分享一段程式碼例項,它實現了動態邊框效果,滑鼠懸浮即可演示效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> * { margin: 0; padding: 0; } .box { width: 1190px; margin: 0 auto; padding-top: 50px; height: 300px; } .border_animation { border: 1px solid #eee; width: 220px; height: 260px; float: left; margin-right: 10px; position: relative; } .border_animation .border_top { position: absolute; height: 1px; width: 0; font-size: 0; background: #666666; top: 0; left: 0; transition: all 0.5s ease-out; } .border_animation .border_right { position: absolute; height: 0px; width: 1px; font-size: 0; background: #666666; bottom: 0; right: 0; transition: all 0.5s ease-out; } .border_animation .border_bottom { position: absolute; height: 1px; width: 0px; font-size: 0; background: #666666; right: 0; bottom: 0; transition: all 0.5s ease-out; } .border_animation .border_left { position: absolute; height: 0px; width: 1px; font-size: 0; background: #666666; left: 0; top: 0; transition: all 0.5s ease-out; } .box .hover .border_top, .box .hover .border_bottom { width: 220px; } .box .hover .border_left, .box .hover .border_right { height: 260px; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script> $(function () { $(".border_animation").mouseenter(function(){ $(this).addClass("hover"); }); $(".border_animation").mouseleave(function(){ $(this).removeClass("hover"); }); }); </script> </head> <body> <div class="box"> <div class="border_animation"> <div class="border_top"></div> <div class="border_right"></div> <div class="border_bottom"></div> <div class="border_left"></div> <div></div> </div> <div class="border_animation"> <div class="border_top"></div> <div class="border_right"></div> <div class="border_bottom"></div> <div class="border_left"></div> <div></div> </div> <div class="border_animation"> <div class="border_top"></div> <div class="border_right"></div> <div class="border_bottom"></div> <div class="border_left"></div> <div></div> </div> <div class="border_animation"> <div class="border_top"></div> <div class="border_right"></div> <div class="border_bottom"></div> <div class="border_left"></div> <div></div> </div> <div class="border_animation"> <div class="border_top"></div> <div class="border_right"></div> <div class="border_bottom"></div> <div class="border_left"></div> <div></div> </div> </div> </body> </html>
相關文章
- CSS3邊框動態環繞效果CSSS3
- CSS3環繞動態邊框效果CSSS3
- CSS 邊框動態環繞CSS
- css-虛線邊框滾動效果CSS
- css3實現邊框具有動態環形遮罩效果CSSS3遮罩
- CSS圖片邊框陰影效果CSS
- CSS3多層邊框效果CSSS3
- CSS虛線邊框效果程式碼CSS
- css實現的交叉邊框效果CSS
- css實現邊框陰影效果CSS
- css內邊框效果程式碼例項CSS
- CSS實現流動邊框CSS
- css3 動態條紋邊框程式碼例項CSSS3
- css3實現0.5px邊框效果CSSS3
- CSS3實現多樣的邊框效果CSSS3
- CSS3邊框旋轉動畫實現效果CSSS3動畫
- 漸變邊框文字效果?CSS 輕鬆拿捏!CSS
- CSS 邊框陰影立體邊框CSS
- CSS border邊框CSS
- css之邊框CSS
- CSS 實現仿 Windows10 滑鼠照亮邊框效果CSSWindows
- CSS3郵票鋸齒邊框效果詳解CSSS3
- 小視訊原始碼,CSS 實現半透明邊框效果原始碼CSS
- css3鋸齒形邊框效果程式碼例項CSSS3
- CSS3圖片邊框陰影效果程式碼例項CSSS3
- CSS 3半透明邊框CSS
- css圓角矩形邊框CSS
- CSS_邊框樣式CSS
- 強大的CSS :實現仿 Windows10 滑鼠照亮邊框效果CSSWindows
- css3實現div邊框陰影效果程式碼例項CSSS3
- css3實現的邊框陰影效果程式碼例項CSSS3
- 45個純CSS實現的精美邊框效果【附原始碼】【上篇】CSS原始碼
- 如何使用CSS設定文字框的邊框CSS
- css氣泡聊天框效果CSS
- 教你玩轉CSS border(邊框)CSS
- 【叢林】CSS 邊框淺談CSS
- CSS 奇思妙想邊框動畫CSS動畫
- CSS 線條環形動態運動效果CSS