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 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 3D方塊效果程式碼CSSS33D
- CSS3星系運動效果程式碼例項CSSS3
- CSS3文字凹凸效果程式碼例項CSSS3
- CSS3文字陰影效果程式碼例項CSSS3
- CSS3象棋效果CSSS3
- 教你怎麼使用css3給圖片新增漸變效果(程式碼詳解)CSSS3
- 程式碼雨效果
- CSS3 矩形切角效果CSSS3
- CSS3翻轉效果CSSS3
- CSS3呼吸燈效果CSSS3
- CSS3空心圓效果CSSS3
- CSS3 checkbox美化效果CSSS3
- CSS3哭臉效果CSSS3
- CSS3 文字效果CSSS3
- CSS3花屏文字效果CSSS3
- CSS3白鶴展翅效果CSSS3
- CSS3 loadding載入效果CSSS3
- CSS3 loadding載入程式碼CSSS3