css3折角效果程式碼例項
分享一段程式碼,它實現矩形折角效果,程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style type="text/css"> .corner{ position: absolute; top:50%;left: 50%; transform:translate(-50%,-50%); width: 120px;line-height:120px; padding:40px; text-align: center; color: white; font-size: 200%; background:linear-gradient(-150deg,transparent 1.5em, yellowgreen 0); border-radius:.5em; } .corner:before{ content: ''; position: absolute; top: 0; right: 0; background: linear-gradient(to left bottom,transparent 50%, rgba(0,0,0,.2) 0, rgba(0,0,0,.4)) 100% 0 no-repeat; width: 1.73em; height: 3em; transform: translateY(-1.3em) rotate(-30deg); transform-origin: bottom right; border-bottom-left-radius: inherit; box-shadow: -.2em .2em .3em -.1em rgba(0,0,0,.15); } </style> </head> <body> <div class="corner"></div> </body> </html>
相關文章
- css3實現的折角效果程式碼例項CSSS3
- CSS3折角效果程式碼CSSS3
- css3星空效果程式碼例項CSSS3
- css3水滴效果程式碼例項CSSS3
- CSS3 名片效果程式碼例項CSSS3
- CSS3小黃人效果程式碼例項CSSS3
- css3晃動效果程式碼例項CSSS3
- CSS3心形效果程式碼例項CSSS3
- CSS3旋轉效果程式碼例項CSSS3
- CSS3彈球效果程式碼例項CSSS3
- CSS3滑過光束效果程式碼例項CSSS3
- css3繪製月牙效果程式碼例項CSSS3
- CSS3梯形效果程式碼例項CSSS3
- CSS3背景漸變效果程式碼例項CSSS3
- css3立方體效果程式碼例項CSSS3
- css3優惠券效果程式碼例項CSSS3
- CSS3星系運動效果程式碼例項CSSS3
- css3漂浮氣球效果程式碼例項CSSS3
- CSS3文字凹凸效果程式碼例項CSSS3
- css3大象行走效果程式碼例項CSSS3
- CSS3文字陰影效果程式碼例項CSSS3
- CSS3 div從左側滑入效果程式碼例項CSSS3
- css3文字鏤空效果程式碼例項CSSS3
- css3實現的打折卡效果程式碼例項CSSS3
- CSS3 實現的鐘表效果程式碼例項CSSS3
- css3實現的毛玻璃效果程式碼例項CSSS3
- css3實現的打字機效果程式碼例項CSSS3
- CSS3文字漸現效果程式碼例項CSSS3
- css3實現的圓角效果程式碼例項CSSS3
- css3實現的氣泡效果程式碼例項CSSS3
- css3鋸齒形邊框效果程式碼例項CSSS3
- css3實現的斑馬紋效果程式碼例項CSSS3
- css3元素的伸縮效果程式碼例項CSSS3
- css3實現button按鈕美化效果程式碼例項CSSS3
- css3和js模擬翻頁效果程式碼例項CSSS3JS
- CSS3實現的div圓角效果程式碼例項CSSS3
- CSS3實現的div陰影效果程式碼例項CSSS3
- css3帶有光暈的流星效果程式碼例項CSSS3