160419、CSS3实现32种基本图形
CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出。直接用CSS3画出这些图形,要比贴图性能更好,体验更加,是一种非常好的网页美观方式。
这32种图形分别为圆形,椭圆形,三角形,倒三角形,左三角形,右三角形,菱形,梯形,长方形,正方形,圆环,平行四边形,五角星,六角星,五边形,六边形,八边形,心形,蛋形,无穷符号,消息提示框,钻石,八卦图,食豆人,扇形,月牙,顶左直角三角形,顶右直角三角形 ,底左直角三角形 ,底右直角三角形 ,八角形, 十二角形。
网页代码中用到(<!-- 浮动Div换行 --> <div style="clear:both">)和Div边距设置和浮动(margin: 20px 20px; float: left;)。
参考文章:编程之家:http://blog.csdn.net/chenhongwu666/article/details/38905803
1. 圆形:设置宽度和高度相等,border-radius属性为宽度或高度的一半。
效果图:
- #Circle{
- width:100px;
- height:100px;
- float: left;
- background: #6fee1d;
- -moz-border-radius: 50px;
- -webkit-border-radius: 50px;
- border-radius: 50px;
- }
2.椭圆形:圆形的变体,高度设置为宽度的一半,border-radius属性为高度除以高度一半。
效果图:
- #Oval {
- width: 200px;
- height: 100px;
- float: left;
- background: #e9880c;
- -webkit-border-radius: 100px / 50px;
- -moz-border-radius: 100px / 50px;
- border-radius: 100px / 50px;
- }
3.三角形:宽度和高度设置为0,border设置左,右边透明,底边可见Solid。
效果图:
- #Triangle {
- width: 0;
- height: 0;
- float: left;
- border-bottom: 100px solid #fcf706;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
4.倒三角形:宽度和高度设置为0,border设置左,右边透明,顶边可见Solid。
效果图:
- #InvertedTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 100px solid #30a3bf;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
5.左三角形:宽度和高度设置为0,border设置上,下边透明,右边可见Solid。
效果图:
- #LeftTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 50px solid transparent;
- border-right: 100px solid #466f20;
- border-bottom: 50px solid transparent;
- }
6.右三角形:宽度和高度设置为0,border设置上,下边透明,左边可见Solid。
效果图:
- #RightTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 50px solid transparent;
- border-left: 100px solid #800820;
- border-bottom: 50px solid transparent;
- }
7.菱形:使用transform和rotate相结合,使两个正反三角形上下显示。
效果图:
- #Diamond {
- width: 100px;
- height: 100px;
- float: left;
- background: #8e00ff;
- /* Rotate */
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- /* Rotate Origin */
- -webkit-transform-origin: 0 100%;
- -moz-transform-origin: 0 100%;
- -ms-transform-origin: 0 100%;
- -o-transform-origin: 0 100%;
- transform-origin: 0 100%;
- margin: 40px 0 10px 240px;
- }
8.梯形:三角形的变体,设置左右两条边相等,并且给它设置一个宽度。
效果图:
- #Trapezium {
- height: 0;
- width: 100px;
- float: left;
- border-bottom: 100px solid #dc2500;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
9.长方形:宽比高长。
效果图:
- #Rectangle {
- height: 50px;
- width: 100px;
- float: left;
- background: #afe05d;
- }
10.正方形:宽和高相等。
效果图:
- #Square {
- height: 100px;
- width: 100px;
- float: left;
- background: #b02089;
- }
11.圆环:在圆形的基础上设置边界,边界颜色与圆形填充颜色不同。
效果图:
- #Ring {
- width: 100px;
- height: 100px;
- float: left;
- background-color: white;
- border-radius: 80px;
- border:5px #ffd700 solid;
- }
12.平行四边形:使用transform使长方形倾斜一个角度。
效果图:
- #Parallelogram {
- width: 120px;
- height: 80px;
- float: left;
- margin-left: 10px;
- -webkit-transform: skew(30deg);
- -moz-transform: skew(230deg);
- -o-transform: skew(30deg);
- transform: skew(30deg);
- background-color: #2eda01;
- }
13.五角星:星形的实现方式比较复杂,主要是使用transform属性来旋转不同的边。
效果图:
- #FiveStar {
- width: 0;
- height: 0;
- float: left;
- margin: 20px 20px;
- color: #ff0012;
- position: relative;
- display: block;
- border-right: 80px solid transparent;
- border-bottom: 60px solid #ff0012;
- border-left: 80px solid transparent;
- -moz-transform: rotate(35deg);
- -webkit-transform: rotate(35deg);
- -ms-transform: rotate(35deg);
- -o-transform: rotate(35deg);
- }
- #FiveStar:before {
- height: 0;
- width: 0;
- content: '';
- position: absolute;
- display: block;
- top: -35px;
- left: -50px;
- border-bottom: 60px solid #ff0012;
- border-left: 20px solid transparent;
- border-right: 20px solid transparent;
- -webkit-transform: rotate(-35deg);
- -moz-transform: rotate(-35deg);
- -ms-transform: rotate(-35deg);
- -o-transform: rotate(-35deg);
- }
- #FiveStar:after {
- width: 0;
- height: 0;
- content: '';
- position: absolute;
- display: block;
- top: 3px;
- left: -85px;
- color: #ff0012;
- border-right: 80px solid transparent;
- border-bottom: 60px solid #ff0012;
- border-left: 80px solid transparent;
- -webkit-transform: rotate(-70deg);
- -moz-transform: rotate(-70deg);
- -ms-transform: rotate(-70deg);
- -o-transform: rotate(-70deg);
- }
14.六角星:使用transform属性来旋转不同的边。
效果图:
- #SixStar{
- width: 0;
- height: 0;
- float: left;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-bottom: 100px solid #cfd810;
- position: relative;
- }
- #SixStar:after{
- width: 0;
- height: 0;
- content: "";
- border-top: 100px solid #cfd810;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- position: absolute;
- top: 30px;
- left: -50px;
- }
15.六边形:在长方形上面和下面各放置一个三角形。
效果图:
- #Hexagon {
- width: 100px;
- height: 55px;
- float: left;
- background: #000001;
- position: relative;
- margin: 10px auto;
- }
- #Hexagon:before {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- top: -25px;
- left: 0;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-bottom: 25px solid #000001;
- }
- #Hexagon:after {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- bottom: -25px;
- left: 0;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-top: 25px solid #000001;
- }
16.五边形:可以采用三角形和梯形组合。
效果图:
- #Pentagon{
- width: 60px;
- float: left;
- position: relative;
- border-width: 52px 20px 0;
- border-style: solid;
- border-color: #711ee2 transparent;
- }
- #Pentagon:before{
- content: "";
- position: absolute;
- width: 0;
- height: 0;
- top: -92px;
- left: -20px;
- border-width: 0 50px 40px;
- border-style: solid;
- border-color: transparent transparent #711ee2;
- }
17.八边形:在长方形上面和下面各放置一个梯形。
效果图:
- #Octagon{
- width: 100px;
- height: 100px;
- float: left;
- margin: 10px 10px;
- background-color: #66e006;
- position: relative;
- }
- #Octagon:before{
- width: 42px;
- height: 0;
- top: 0;
- left: 0;
- position: absolute;
- content: "";
- border-left: 29px solid #ffffff;
- border-right: 29px solid #ffffff;
- border-bottom: 29px solid #66e006;
- }
- #Octagon:after{
- width: 42px;
- height: 0;
- left: 0;
- bottom: 0;
- position: absolute;
- content: "";
- border-left: 29px solid #ffffff;
- border-right: 29px solid #ffffff;
- border-top: 29px solid #66e006;
- }
18.心形:心形的制作是非常复杂的,可以使用伪元素来制作,分别将伪元素旋转不同的角度,并修改transform-origin属性来设置元素的旋转中心点。
效果图:
- #Heart {
- float: left;
- position: relative;
- }
- #Heart:before, #Heart:after {
- content: "";
- width: 70px;
- height: 115px;
- position: absolute;
- background: red;
- left: 70px;
- top: 0;
- -webkit-border-radius: 50px 50px 0 0;
- -moz-border-radius: 50px 50px 0 0;
- border-radius: 50px 50px 0 0;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- -webkit-transform-origin: 0 100%;
- -moz-transform-origin: 0 100%;
- -ms-transform-origin: 0 100%;
- -o-transform-origin: 0 100%;
- transform-origin: 0 100%;
- }
- #Heart:after {
- left: 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- -webkit-transform-origin: 100% 100%;
- -moz-transform-origin: 100% 100%;
- -ms-transform-origin: 100% 100%;
- -o-transform-origin: 100% 100%;
- transform-origin: 100% 100%;
- }
19.蛋形:椭圆形的变体,高度比宽度稍大,设置正确的border-radius属性。
效果图:
- #Egg {
- width: 100px;
- height: 160px;
- float: left;
- background: #ffb028;
- display: block;
- -webkit-border-radius: 60px 60px 60px 60px / 100px 100px 68px 68px;
- border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
- }
20.无穷符号:通过border属性和设置伪元素的角度来实现。
效果图:
- #Infinity {
- width: 220px;
- height: 100px;
- float: left;
- position: relative;
- }
- #Infinity:before, #Infinity:after {
- content: "";
- width: 60px;
- height: 60px;
- position: absolute;
- top: 0;
- left: 0;
- border: 20px solid #008bb0;
- -moz-border-radius: 50px 50px 0;
- border-radius: 50px 50px 0 50px;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- }
- #Infinity:after {
- left: auto;
- right: 0;
- -moz-border-radius: 50px 50px 50px 0;
- border-radius: 50px 50px 50px 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
21.消息提示框:一个圆角矩形加左边中间的一个小三角形。
效果图:
- #CommentBubble {
- width: 140px;
- height: 100px;
- margin: 30px 20px;
- float: left;
- background: #8867b9;
- position: relative;
- -moz-border-radius: 12px;
- -webkit-border-radius: 12px;
- border-radius: 12px;
- }
- #CommentBubble:before {
- content: "";
- width: 0;
- height: 0;
- right: 100%;
- top: 38px;
- position: absolute;
- border-top: 13px solid transparent;
- border-right: 26px solid #8867b9;
- border-bottom: 13px solid transparent;
- }
22.钻石:上面一个梯形,下面一个三角形组成。
效果图:
- #Diamonds{
- width: 50px;
- height: 0;
- float: left;
- border-style: solid;
- border-color: transparent transparent #9aff02 transparent;
- border-width: 0 25px 25px 25px;
- position: relative;
- margin: 20px 0 50px 0;
- }
- #Diamonds:after{
- width: 0;
- height: 0;
- top: 25px;
- left: -25px;
- border-style: solid;
- border-color: #9aff02 transparent transparent transparent;
- border-width: 70px 50px 0 50px;
- position: absolute;
- content: "";
- }
23.八卦图:多个圆形的组合。
效果图:
- #EightDiagrams{
- width: 96px;
- height: 48px;
- margin: 20px 20px;
- float: left;
- background-color: #ffffff;
- border-color: #000000;
- border-style: solid;
- border-width: 2px 2px 50px 2px;
- border-radius: 100%;
- position: relative;
- }
- #EightDiagrams:before {
- width: 12px;
- height: 12px;
- top: 50%;
- left: 0;
- content: "";
- position: absolute;
- background-color: #ffffff;
- border: 18px solid #000000;
- border-radius: 100%;
- }
- #EightDiagrams:after {
- width: 12px;
- height: 12px;
- top: 50%;
- left: 50%;
- background-color: #000000;
- border: 18px solid #ffffff;
- border-radius:100%;
- content: "";
- position: absolute;
- }
24.食豆人:设置border和border-top-left-radius,border-bottom-right-radius等属性。
效果图:
- #PacMan {
- width: 0;
- height: 0;
- float: left;
- border-right: 60px solid transparent;
- border-left: 60px solid #300fed;
- border-top: 60px solid #300fed;
- border-bottom: 60px solid #300fed;
- border-top-left-radius: 60px;
- border-top-right-radius: 60px;
- border-bottom-left-radius: 60px;
- border-bottom-right-radius: 60px;
- }
25.扇形:在三角形的基础上,让其中一边成弧形 。
效果图:
- #Sector {
- width:0;
- height:0;
- float: left;
- background-color: #ffffff;
- border-left: 70px solid transparent;
- border-right: 70px solid transparent;
- border-top: 100px solid #ab9ed1;
- border-radius:50%;
- }
26.月牙:由两条弧线组成的,每个弧线可以看成一个圆的一部分弧长,在圆的基础上让圆有一个阴影可以形成一个月牙。
效果图:
- #CrescentMoon{
- width:80px;
- height:80px;
- float: left;
- background-color: #ffffff;
- border-radius:50%;
- box-shadow: 15px 15px 0 0 #9600d2;
- }
27.顶左直角三角形。
效果图:
- #TopLeftTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-top: 100px solid #7efde1;
- border-right: 100px solid transparent;
- }
28.顶右直角三角形。
效果图:
- #TopRightTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-top: 100px solid #400526;
- border-left: 100px solid transparent;
- }
29.底左直角三角形。
效果图:
- #BottomLeftTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-bottom: 100px solid #600ffe;
- border-right: 100px solid transparent;
- }
30.底右直角三角形。
效果图:
- #BottomRightTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-bottom: 100px solid #ff7578;
- border-left: 100px solid transparent;
- }
31.八角形。
效果图:
- #Burst8 {
- width: 80px;
- height: 80px;
- margin: 10px 10px;
- float: left;
- background-color: #cf7668;
- position: relative;
- transform:rotate(20deg);
- -webkit-transform:rotate(20deg);
- -ms-transform:rotate(20deg);
- -moz-transform:rotate(20deg);
- -o-transform:rotate(20deg);
- }
- #Burst8:before{
- width: 80px;
- height: 80px;
- top: 0;
- left: 0;
- background-color: #cf7668;
- position: absolute;
- content: "";
- transform:rotate(135deg);
- -webkit-transform:rotate(135deg);
- -ms-transform:rotate(135deg);
- -moz-transform:rotate(135deg);
- -o-transform:rotate(135deg);
- }
32.十二角形。
效果图:
- #Burst12 {
- width: 80px;
- height: 80px;
- margin: 20px 20px;
- float: left;
- background-color: #a8ff26;
- position: relative;
- text-align: center;
- }
- #Burst12:before, #Burst12:after{
- width: 80px;
- height: 80px;
- top: 0;
- left: 0;
- background-color: #a8ff26;
- position: absolute;
- content: "";
- }
- #Burst12:before{
- transform:rotate(30deg);
- -webkit-transform:rotate(30deg);
- -ms-transform:rotate(30deg);
- -moz-transform:rotate(30deg);
- -o-transform:rotate(30deg);
- }
- #Burst12:after{
- transform:rotate(60deg);
- -webkit-transform:rotate(60deg);
- -ms-transform:rotate(60deg);
- -moz-transform:rotate(60deg);
- -o-transform:rotate(60deg);
- }
完整的CSS3+HTML5代码:BaseGraphCSS3.html
效果图:
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>CSS3实现基本图形</title>
- <style>
- #Circle{
- width:100px;
- height:100px;
- float: left;
- background: #6fee1d;
- -moz-border-radius: 50px;
- -webkit-border-radius: 50px;
- border-radius: 50px;
- }
- #Oval {
- width: 200px;
- height: 100px;
- float: left;
- background: #e9880c;
- -webkit-border-radius: 100px / 50px;
- -moz-border-radius: 100px / 50px;
- border-radius: 100px / 50px;
- }
- #Triangle {
- width: 0;
- height: 0;
- float: left;
- border-bottom: 100px solid #fcf706;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
- #InvertedTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 100px solid #30a3bf;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
- #LeftTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 50px solid transparent;
- border-right: 100px solid #466f20;
- border-bottom: 50px solid transparent;
- }
- #RightTriangle {
- width: 0;
- height: 0;
- float: left;
- border-top: 50px solid transparent;
- border-left: 100px solid #800820;
- border-bottom: 50px solid transparent;
- }
- #Diamond {
- width: 100px;
- height: 100px;
- float: left;
- background: #8e00ff;
- /* Rotate */
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- /* Rotate Origin */
- -webkit-transform-origin: 0 100%;
- -moz-transform-origin: 0 100%;
- -ms-transform-origin: 0 100%;
- -o-transform-origin: 0 100%;
- transform-origin: 0 100%;
- margin: 40px 0 10px 240px;
- }
- #Trapezium {
- height: 0;
- width: 100px;
- float: left;
- border-bottom: 100px solid #dc2500;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- }
- #Rectangle {
- height: 50px;
- width: 100px;
- float: left;
- background: #afe05d;
- }
- #Square {
- height: 100px;
- width: 100px;
- float: left;
- background: #b02089;
- }
- #Ring {
- width: 100px;
- height: 100px;
- float: left;
- background-color: white;
- border-radius: 80px;
- border:5px #ffd700 solid;
- }
- #Parallelogram {
- width: 120px;
- height: 80px;
- float: left;
- margin-left: 10px;
- -webkit-transform: skew(30deg);
- -moz-transform: skew(230deg);
- -o-transform: skew(30deg);
- transform: skew(30deg);
- background-color: #2eda01;
- }
- #FiveStar {
- width: 0;
- height: 0;
- float: left;
- margin: 20px 20px;
- color: #ff0012;
- position: relative;
- display: block;
- border-right: 80px solid transparent;
- border-bottom: 60px solid #ff0012;
- border-left: 80px solid transparent;
- -moz-transform: rotate(35deg);
- -webkit-transform: rotate(35deg);
- -ms-transform: rotate(35deg);
- -o-transform: rotate(35deg);
- }
- #FiveStar:before {
- height: 0;
- width: 0;
- content: '';
- position: absolute;
- display: block;
- top: -35px;
- left: -50px;
- border-bottom: 60px solid #ff0012;
- border-left: 20px solid transparent;
- border-right: 20px solid transparent;
- -webkit-transform: rotate(-35deg);
- -moz-transform: rotate(-35deg);
- -ms-transform: rotate(-35deg);
- -o-transform: rotate(-35deg);
- }
- #FiveStar:after {
- width: 0;
- height: 0;
- content: '';
- position: absolute;
- display: block;
- top: 3px;
- left: -85px;
- color: #ff0012;
- border-right: 80px solid transparent;
- border-bottom: 60px solid #ff0012;
- border-left: 80px solid transparent;
- -webkit-transform: rotate(-70deg);
- -moz-transform: rotate(-70deg);
- -ms-transform: rotate(-70deg);
- -o-transform: rotate(-70deg);
- }
- #SixStar{
- width: 0;
- height: 0;
- float: left;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-bottom: 100px solid #cfd810;
- position: relative;
- }
- #SixStar:after{
- width: 0;
- height: 0;
- content: "";
- border-top: 100px solid #cfd810;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- position: absolute;
- top: 30px;
- left: -50px;
- }
- #Pentagon{
- width: 60px;
- float: left;
- position: relative;
- border-width: 52px 20px 0;
- border-style: solid;
- border-color: #711ee2 transparent;
- }
- #Pentagon:before{
- content: "";
- position: absolute;
- width: 0;
- height: 0;
- top: -92px;
- left: -20px;
- border-width: 0 50px 40px;
- border-style: solid;
- border-color: transparent transparent #711ee2;
- }
- #Hexagon {
- width: 100px;
- height: 55px;
- float: left;
- background: #000001;
- position: relative;
- margin: 10px auto;
- }
- #Hexagon:before {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- top: -25px;
- left: 0;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-bottom: 25px solid #000001;
- }
- #Hexagon:after {
- content: "";
- width: 0;
- height: 0;
- position: absolute;
- bottom: -25px;
- left: 0;
- border-left: 50px solid transparent;
- border-right: 50px solid transparent;
- border-top: 25px solid #000001;
- }
- #Octagon{
- width: 100px;
- height: 100px;
- float: left;
- margin: 10px 10px;
- background-color: #66e006;
- position: relative;
- }
- #Octagon:before{
- width: 42px;
- height: 0;
- top: 0;
- left: 0;
- position: absolute;
- content: "";
- border-left: 29px solid #ffffff;
- border-right: 29px solid #ffffff;
- border-bottom: 29px solid #66e006;
- }
- #Octagon:after{
- width: 42px;
- height: 0;
- left: 0;
- bottom: 0;
- position: absolute;
- content: "";
- border-left: 29px solid #ffffff;
- border-right: 29px solid #ffffff;
- border-top: 29px solid #66e006;
- }
- #Heart {
- float: left;
- position: relative;
- }
- #Heart:before, #Heart:after {
- content: "";
- width: 70px;
- height: 115px;
- position: absolute;
- background: red;
- left: 70px;
- top: 0;
- -webkit-border-radius: 50px 50px 0 0;
- -moz-border-radius: 50px 50px 0 0;
- border-radius: 50px 50px 0 0;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- -webkit-transform-origin: 0 100%;
- -moz-transform-origin: 0 100%;
- -ms-transform-origin: 0 100%;
- -o-transform-origin: 0 100%;
- transform-origin: 0 100%;
- }
- #Heart:after {
- left: 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- -webkit-transform-origin: 100% 100%;
- -moz-transform-origin: 100% 100%;
- -ms-transform-origin: 100% 100%;
- -o-transform-origin: 100% 100%;
- transform-origin: 100% 100%;
- }
- #Egg {
- width: 100px;
- height: 160px;
- float: left;
- background: #ffb028;
- display: block;
- -webkit-border-radius: 60px 60px 60px 60px / 100px 100px 68px 68px;
- border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
- }
- #Infinity {
- width: 220px;
- height: 100px;
- float: left;
- position: relative;
- }
- #Infinity:before, #Infinity:after {
- content: "";
- width: 60px;
- height: 60px;
- position: absolute;
- top: 0;
- left: 0;
- border: 20px solid #008bb0;
- -moz-border-radius: 50px 50px 0;
- border-radius: 50px 50px 0 50px;
- -webkit-transform: rotate(-45deg);
- -moz-transform: rotate(-45deg);
- -ms-transform: rotate(-45deg);
- -o-transform: rotate(-45deg);
- transform: rotate(-45deg);
- }
- #Infinity:after {
- left: auto;
- right: 0;
- -moz-border-radius: 50px 50px 50px 0;
- border-radius: 50px 50px 50px 0;
- -webkit-transform: rotate(45deg);
- -moz-transform: rotate(45deg);
- -ms-transform: rotate(45deg);
- -o-transform: rotate(45deg);
- transform: rotate(45deg);
- }
- #CommentBubble {
- width: 140px;
- height: 100px;
- margin: 30px 20px;
- float: left;
- background: #8867b9;
- position: relative;
- -moz-border-radius: 12px;
- -webkit-border-radius: 12px;
- border-radius: 12px;
- }
- #CommentBubble:before {
- content: "";
- width: 0;
- height: 0;
- right: 100%;
- top: 38px;
- position: absolute;
- border-top: 13px solid transparent;
- border-right: 26px solid #8867b9;
- border-bottom: 13px solid transparent;
- }
- #Diamonds{
- width: 50px;
- height: 0;
- float: left;
- border-style: solid;
- border-color: transparent transparent #9aff02 transparent;
- border-width: 0 25px 25px 25px;
- position: relative;
- margin: 20px 0 50px 0;
- }
- #Diamonds:after{
- width: 0;
- height: 0;
- top: 25px;
- left: -25px;
- border-style: solid;
- border-color: #9aff02 transparent transparent transparent;
- border-width: 70px 50px 0 50px;
- position: absolute;
- content: "";
- }
- #EightDiagrams{
- width: 96px;
- height: 48px;
- margin: 20px 20px;
- float: left;
- background-color: #ffffff;
- border-color: #000000;
- border-style: solid;
- border-width: 2px 2px 50px 2px;
- border-radius: 100%;
- position: relative;
- }
- #EightDiagrams:before {
- width: 12px;
- height: 12px;
- top: 50%;
- left: 0;
- content: "";
- position: absolute;
- background-color: #ffffff;
- border: 18px solid #000000;
- border-radius: 100%;
- }
- #EightDiagrams:after {
- width: 12px;
- height: 12px;
- top: 50%;
- left: 50%;
- background-color: #000000;
- border: 18px solid #ffffff;
- border-radius:100%;
- content: "";
- position: absolute;
- }
- #PacMan {
- width: 0;
- height: 0;
- float: left;
- border-right: 60px solid transparent;
- border-left: 60px solid #300fed;
- border-top: 60px solid #300fed;
- border-bottom: 60px solid #300fed;
- border-top-left-radius: 60px;
- border-top-right-radius: 60px;
- border-bottom-left-radius: 60px;
- border-bottom-right-radius: 60px;
- }
- #Sector {
- width:0;
- height:0;
- float: left;
- background-color: #ffffff;
- border-left: 70px solid transparent;
- border-right: 70px solid transparent;
- border-top: 100px solid #ab9ed1;
- border-radius:50%;
- }
- #CrescentMoon{
- width:80px;
- height:80px;
- float: left;
- background-color: #ffffff;
- border-radius:50%;
- box-shadow: 15px 15px 0 0 #9600d2;
- }
- #TopLeftTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-top: 100px solid #7efde1;
- border-right: 100px solid transparent;
- }
- #TopRightTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-top: 100px solid #400526;
- border-left: 100px solid transparent;
- }
- #BottomLeftTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-bottom: 100px solid #600ffe;
- border-right: 100px solid transparent;
- }
- #BottomRightTriangle {
- width: 0px;
- height: 0px;
- margin: 10px 10px;
- float: left;
- border-bottom: 100px solid #ff7578;
- border-left: 100px solid transparent;
- }
- #Burst8 {
- width: 80px;
- height: 80px;
- margin: 10px 10px;
- float: left;
- background-color: #cf7668;
- position: relative;
- transform:rotate(20deg);
- -webkit-transform:rotate(20deg);
- -ms-transform:rotate(20deg);
- -moz-transform:rotate(20deg);
- -o-transform:rotate(20deg);
- }
- #Burst8:before{
- width: 80px;
- height: 80px;
- top: 0;
- left: 0;
- background-color: #cf7668;
- position: absolute;
- content: "";
- transform:rotate(135deg);
- -webkit-transform:rotate(135deg);
- -ms-transform:rotate(135deg);
- -moz-transform:rotate(135deg);
- -o-transform:rotate(135deg);
- }
- #Burst12 {
- width: 80px;
- height: 80px;
- margin: 20px 20px;
- float: left;
- background-color: #a8ff26;
- position: relative;
- text-align: center;
- }
- #Burst12:before, #Burst12:after{
- width: 80px;
- height: 80px;
- top: 0;
- left: 0;
- background-color: #a8ff26;
- position: absolute;
- content: "";
- }
- #Burst12:before{
- transform:rotate(30deg);
- -webkit-transform:rotate(30deg);
- -ms-transform:rotate(30deg);
- -moz-transform:rotate(30deg);
- -o-transform:rotate(30deg);
- }
- #Burst12:after{
- transform:rotate(60deg);
- -webkit-transform:rotate(60deg);
- -ms-transform:rotate(60deg);
- -moz-transform:rotate(60deg);
- -o-transform:rotate(60deg);
- }
- </style>
- </head>
- <body>
- <!-- 圆形:设置宽度和高度相等,border-radius属性为宽度或高度的一半 -->
- <div id="Circle"></div>
- <!-- 椭圆形:圆形的变体,高度设置为宽度的一半,border-radius属性为高度除以高度一半 -->
- <div id="Oval"></div>
- <!-- 三角形:宽度和高度设置为0,border设置左,右边透明,底边可见Solid -->
- <div id="Triangle"></div>
- <!-- 倒三角形:宽度和高度设置为0,border设置左,右边透明,顶边可见Solid -->
- <div id="InvertedTriangle"></div>
- <!-- 左三角形:宽度和高度设置为0,border设置上,下边透明,右边可见Solid -->
- <div id="LeftTriangle"></div>
- <!-- 右三角形:宽度和高度设置为0,border设置上,下边透明,左边可见Solid -->
- <div id="RightTriangle"></div>
- <!-- 菱形:使用transform和rotate相结合,使两个正反三角形上下显示 -->
- <div id="Diamond"></div>
- <!-- 梯形:三角形的变体,设置左右两条边相等,并且给它设置一个宽度 -->
- <div id="Trapezium"></div>
- <!-- 长方形:宽比高长 -->
- <div id="Rectangle"></div>
- <!-- 浮动Div换行 -->
- <div style="clear:both">
- <!-- 正方形:宽和高相等 -->
- <div id="Square"></div>
- <!-- 圆环:在圆形的基础上设置边界,边界颜色与圆形填充颜色不同 -->
- <div id="Ring"></div>
- <!-- 平行四边形:使用transform使长方形倾斜一个角度 -->
- <div id="Parallelogram"></div>
- <!-- 五角星:星形的实现方式比较复杂,主要是使用transform属性来旋转不同的边 -->
- <div id="FiveStar"></div>
- <!-- 六角星:使用transform属性来旋转不同的边 -->
- <div id="SixStar"></div>
- <!-- 五边形:可以采用三角形和梯形组合 -->
- <div id="Pentagon"></div>
- <!-- 六边形:在长方形上面和下面各放置一个三角形 -->
- <div id="Hexagon"></div>
- <!-- 八边形:在长方形上面和下面各放置一个梯形 -->
- <div id="Octagon"></div>
- <!-- 心形:心形的制作是非常复杂的,可以使用伪元素来制作,分别将伪元素旋转不同的角度,并修改transform-origin属性来设置元素的旋转中心点 -->
- <div id="Heart"></div>
- <!-- 浮动Div换行 -->
- <div style="clear:both">
- <!-- 蛋形:椭圆形的变体,高度比宽度稍大,设置正确的border-radius属性 -->
- <div id="Egg"></div>
- <!-- 无穷符号:通过border属性和设置伪元素的角度来实现 -->
- <div id="Infinity"></div>
- <!-- 消息提示框:一个圆角矩形加左边中间的一个小三角形 -->
- <div id="CommentBubble"></div>
- <!-- 钻石:上面一个梯形,下面一个三角形组成 -->
- <div id="Diamonds"></div>
- <!-- 八卦图:多个圆形的组合-->
- <div id="EightDiagrams"></div>
- <!-- 食豆人:设置border和border-top-left-radius,border-bottom-right-radius等属性-->
- <div id="PacMan"></div>
- <!-- 扇形:在三角形的基础上,让其中一边成弧形 -->
- <div id="Sector"></div>
- <!-- 月牙:由两条弧线组成的,每个弧线可以看成一个圆的一部分弧长,在圆的基础上让圆有一个阴影可以形成一个月牙 -->
- <div id="CrescentMoon"></div>
- <!-- 浮动Div换行 -->
- <div style="clear:both">
- <!-- 顶左直角三角形 -->
- <div id="TopLeftTriangle"></div>
- <!-- 顶右直角三角形 -->
- <div id="TopRightTriangle"></div>
- <!-- 底左直角三角形 -->
- <div id="BottomLeftTriangle"></div>
- <!-- 底右直角三角形 -->
- <div id="BottomRightTriangle"></div>
- <!-- 八角形 -->
- <div id="Burst8"></div>
- <!-- 十二角形 -->
- <div id="Burst12"></div>
- </body>
- </html>
多角形绘制比较复杂,比如五角星,八角形等。
心形和五角星复杂,但很常用,灵活运用可以使我们的网站更加炫酷。
以后如果遇到其他用CSS直接绘制的图形,会收集补充到这。
文章引用路径:http://blog.csdn.net/wp1603710463/article/details/51180912
160419、CSS3实现32种基本图形的更多相关文章
- CSS3实现32种基本图形
CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出.直接用CSS3画出这些图形,要比贴图性能更好,体验更加,是一种非常好的网页美观方式. 这32种图形分别为圆形,椭圆形,三角形,倒三角形, ...
- CSS制作的32种图形效果[梯形|三角|椭圆|平行四边形|菱形|四分之一圆|旗帜]
转载链接:http://www.w3cplus.com/css/css-simple-shapes-cheat-sheet 前面在<纯CSS制作的图形效果>一文中介绍了十六种CSS画各种不 ...
- CSS3实现二十多种基本图形
CSS3可以实现很多漂亮的图形,我收集了32种图形,在下面列出.直接用CSS3画出这些图形,要比贴图性能更好,体验更加,是一种非常好的网页美观方式. 这32种图形分别为圆形,椭圆形,三角形,倒三角形, ...
- display 的 32 种写法
从大的分类来讲, display的 32种写法可以分为 6个大类,再加上 1个全局类,一共是 7大类: 外部值 内部值 列表值 属性值 显示值 混合值 全局值 外部值 所谓外部值,就是说这些值只会直接 ...
- display的32种写法
你知道『回』字有四种写法,但你知道display有32种写法吗?今天我们一一道来,让你一次性完全掌握display,从此再也不用对它发愁. 从大的分类来讲,display的32种写法可以分为6个大类, ...
- display的32种写法--摘抄
你知道『回』字有四种写法,但你知道display有32种写法吗?今天我们一一道来,让你一次性完全掌握display,从此再也不用对它发愁. 从大的分类来讲,display的32种写法可以分为6个大类, ...
- CSS3新特性,绘制常见图形
前言:最近准备做一个自己的网页,设计稿中导航我准备设计成矩形,也有hover样式展示的矩形,当中一些头像等等.以前除了画圆,好像真没认真画过其他图形,今天就画画我们常见到的几个图形. 在此之前我们有必 ...
- CSS3常用30种选择器总结
CSS3常用30种选择器总结 HTML5/CSS3时尚的圆盘时钟动画 带当前日期 www.html5tricks.com/demo/html5-css3-clock-with-date/index.h ...
- 纯css3样式属性制作各种图形图标
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
随机推荐
- apache虚拟主机设置泛域名的方法
在apache虚拟主机中设置泛域名解析,主要是用到ServerAlias 的配置. 1.支持多域名 例如,让mail.jbxue.org.smtp.jbxue.org.pop3.jbxue.org 都 ...
- Atitit.软件控件and仪表盘(23)--多媒体子系统--视频输出切换控制cvbs av s-video Ypbpr pal ntsc
Atitit.软件控件and仪表盘(23)--多媒体子系统--视频输出切换控制cvbs av s-video Ypbpr pal ntsc 1. CVBS是AV接口 1 2. S-Video S端子 ...
- pyspark采用python3开发
现在时间2017-04-17. python版本3.5支持pyspark python3.6目前还不支持 做法简单,只需要在bin/pyspark中增加 export PYSPARK_PYTHON=p ...
- Linux之目录的操作(创建、移动、改名、删除、复制)
.创建 mkdir [dirname] //创建单个目录 mkdir -p newdir1/newdir2/newdir3 //递归创建多级目录 mkdir dir1/dir2/newdir3 //在 ...
- 解决Error: That port is already in use.
ubuntu系统下,运行一个django项目,即输入python manage.py runserver后,可能出现 Error: That port is already in use.的错误. 即 ...
- js数组最大值和最小值计算
基本概念 reduce() 方法接收一个函数作为累加器(accumulator),数组中的每个值(从左到右)开始缩减,最终为一个值. reduce 为数组中的每一个元素依次执行回调函数,不包括数组中被 ...
- [wifi]wifi模块操作
问题: 应用程序通过什么样的接口去修改wifi的账号和密码 应用程序如何控制wifi模块
- shell自动交互之expect脚本_转
转自:linux expect详解(ssh自动登录) shell脚本实现ssh自动登录远程服务器示例: #!/usr/bin/expect spawn ssh root@192.168.22.194 ...
- /proc/meminfo分析
参考: 1. linux/Documentation/filesystems/proc.txt 2. Linux 中 /proc/meminfo 的含义 3. redhat deployment gu ...
- MyBatis是支持普通 SQL查询
MyBatis是支持普通 SQL查询,存储过程和高级映射的优秀持久层框架.MyBatis 消除了几乎所有的JDBC代码和参数的手工设置以及结果集的检索.MyBatis 使用简单的 XML或注解用于配置 ...