如何基于纯CSS创建各种图形形状
来源:http://www.codeceo.com/时间:2017-02-17 16:04:13
CSS也称作层叠样式表,用于控制网页内容显示情况,它可以控制HTML无法控制的许多属性,利用CSS能实现多种多样的动画效果,之前我们分享过很多CSS3实现的特效、动画及一些游戏,今天再来教大家学习如何使用简单的CSS创建不同类型的平面图形。
实例分享
矩形
word-wrap: break-word; background-image: none !important; position: static !important; padding: 0px !important; line-height: 1.1em !important; outline-style: none !important; outline-width: 0px !important; width: auto !important; bottom: auto !important; float: none !important; height: auto !important; font-size: 10pt !important; vertical-align: baseline !important; top: auto !important; right: auto !important; left: auto !important;">1 |
.rectangle { |
4 | background-color: #6DC75F; |
三角形
2 | border-left: 75px solid
transparent; |
3 | border-right: 75px solid
transparent; |
4 | border-bottom: 150px solid
#6DC75F; |
9 | <div class = "triangleUp" > |
椭圆形
05 | -moz-border-radius: 150px / 75px; |
06 | -webkit-border-radius: 150px /
75px; |
07 | border-radius: 150px / 75px; |
月牙形
5 | box-shadow: 15px 15px 0 0 GREEN; |
树叶
2 | border-radius: 5px 300px 3px 300px; |
文章内容来源于网络,不代表本站立场,若侵犯到您的权益,可联系我们删除。(本站为非盈利性质网站) 联系邮箱:9145908@qq.com