综合一区-免费污视频-天天操综合网-又黄又爽的网站-日韩中文字幕一区二区三区-狠狠操狠狠-风间由美一区-自拍色图-久草热在线-椎名空在线-亚洲av无码国产精品久久-夜夜se-成人涩涩软件-国产精品第-亚洲自拍中文字幕-久草视频中文在线-日本黄页网站免费大全-双性人做受视频-中国一级免费毛片-三级黄片毛片

純CSS實(shí)現(xiàn)3D按鈕效果

2016/12/20 8:34:24   閱讀:2102    發(fā)布者:2102

今天分享一個(gè)用純CSS實(shí)現(xiàn)的3D按鈕。
css巧妙利用了box-shadow來實(shí)現(xiàn)3D物體的立體感,
當(dāng)按鈕按下的時(shí)候再去修改box-shadow和top值。

讓人感覺有一種按鈕被按下的感覺。css代碼非常少,如下所示

a.css-3d-btn{ 
 position: relative; 
 color: rgba(255, 255, 255, 1); 
 text-decoration: none; 
 background-color: rgba(219, 87, 51, 1); 
 font-family: "Microsoft YaHei", 微軟雅黑, 宋體; 
 font-weight: 700; 
 font-size: 3em; 
 display: block; 
 padding: 4px; 
 border-radius: 8px; 
 /* let’s use box shadows to make the button look more 3-dimensional */ 
 box-shadow: 0px 9px 0px rgba(219, 31, 5, 1), 0px 9px 25px rgba(0, 0, 0, .7); 
 margin: 100px auto; 
 width: 160px; 
 text-align: center; 
 -webkit-transition: all .1s ease; 
 -moz-transition: all .1s ease; 
 transition: all .1s ease; 
} 

/* now if we make the box shadows smaller when the button 
is clicked, it’ll look like the button has been "pushed"
*/ a.css-3d-btn:active{ box-shadow: 0px 3px 0px rgba(219, 31, 5, 1), 0px 3px 6px rgba(0, 0, 0, .9); position: relative; top: 6px; }