CSS3折角效果程式碼
本章節分享一段程式碼例項,它實現了折角效果。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <style> .note { position: relative; display: inline-block; vertical-align: top; width: 15em; padding: 2em; margin: 0 1rem; color: white; font: 100%/1.6 Baskerville, Palatino, serif; border-radius: .5em; position: relative; background: #58a; background: linear-gradient(-155deg, rgba(0, 0, 0, 0) 1.5em, #5588aa 0%); border-radius: .5em; } .note::before { content: ''; position: absolute; top: 0; right: 0; background: linear-gradient(to left bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4)) 100% 0 no-repeat; width: 1.65507em; height: 3.5493em; transform: translateY(-1.89424em) rotate(-40deg); transform-origin: bottom right; border-bottom-left-radius: inherit; box-shadow: -0.2em 0.2em 0.3em -0.1em rgba(0, 0, 0, 0.15); } </style> </head> <body> <div class="note"></div> </body> </html>
相關文章
- css3折角效果程式碼例項CSSS3
- css3實現的折角效果程式碼例項CSSS3
- CSS3圓環效果程式碼CSSS3
- CSS3箭靶效果程式碼CSSS3
- CSS3現菱形效果程式碼CSSS3
- CSS3紅色心形效果程式碼CSSS3
- CSS3動態大白效果程式碼CSSS3
- css3星空效果程式碼例項CSSS3
- css3水滴效果程式碼例項CSSS3
- CSS3 loadding效果程式碼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 3D方塊效果程式碼CSSS33D
- CSS3實現的多重背景效果程式碼CSSS3
- css3漂浮氣球效果程式碼例項CSSS3
- CSS3文字凹凸效果程式碼例項CSSS3
- css3大象行走效果程式碼例項CSSS3
- CSS3文字陰影效果程式碼例項CSSS3
- CSS3 div從左側滑入效果程式碼例項CSSS3
- css3文字鏤空效果程式碼例項CSSS3