下面為大家帶來一篇CSS3繪製六邊形的簡單實作。內容還挺不錯的,現在就分享給大家,也給大家做個參考。
因為很簡單,所以先總結一下:使用CSS3繪製六邊形主要使用偽類別:before和:after在來源元素之前和之後再繪製兩個元素,並利用css3的邊框樣式,將這兩個元素變成三角形放置在來源元素的兩端即可。
(因為之前在生物公司工作過,覺得六邊形更貼近生物分子、基因等概念,包括我們在網路上搜尋關於生物分子、基因等圖片,好多也有六邊形的樣式,所以那時候在頁面做一些功能性的導航或Tag,都會覺得六邊形更貼近一些)。
完整的頁面效果如下圖:(其實是多個六邊形定位成這樣子的。當然,也可以設定不同六邊形的顏色,這樣就可以更好的區分不同的模組功能了)。
我們可以單獨提出一個六邊形分析一下,如下圖:
知道了分析思路,我們可以先了解如何畫三角形,網路上的列子也很多,不過沒有使用過的童鞋不用找了,下面也給出程式碼和範例,如下:
效果圖:
CSS程式碼:
.arrow{ display: inline-block; width:0px; height: 0px; border-style: solid; border-width: 100px; //与padding、margin属性类似,顺序为上、右、下、左 border-color: red blue orange gray; //顺序为上、右、下、左}
HTML程式碼:
<p class="arrow"></p>
如上圖所說,利用border邊框屬性,填滿我們不想要的顏色為透明色,即可得到某一部分三角形,程式碼和圖片效果如下。
效果圖:(左邊的三角形是我們需要的,其它的設定為了透明色)
CSS程式碼:
.arrow{ display: inline-block; width:0px; height: 0px; border-bottom: 100px solid transparent; //设置透明色 border-top: 100px solid transparent; //设置透明色 border-right: 100px solid transparent; //设置透明色 border-left: 100px solid gray; }
HTML程式碼:
<p class="arrow"></p>
Okay。知道如何畫三角形,在利用CSS偽類:before和:after就可以完成我們想要畫的六邊形了。
:before是在元素的前面插入內容
:after是在元素的後面插入內容
如果我們想要插入一些文字性的內容可以在它的content屬性中輸入需要展示的文字,例如content:"HELLO WORLD",不過我們的例子是不需要顯示額外資訊的。我們只是需要將before和after這兩個偽元素變成三角形放置到固定位置即可。
給出完整的程式碼如下:
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style type="text/css"> .sharp:before{ content:""; //不需要展现文字等内容,所以设置为空字符 width:0px; border-bottom:80px solid transparent; border-top:80px solid transparent; border-right:40px solid #6c6; position:absolute; left:-40px; top:0px; } .sharp{ min-width:100px; height:160px; background:#6c6; display: inline-block; position: absolute; line-height: 160px; color:#FFFFFF; font-size: 20px; text-align: center; } .sharp:after{ content:""; //不需要展现文字等内容,所以设置为空字符 width:0px; border-bottom:80px solid transparent; border-top:80px solid transparent; border-left-width:40px; border-left-style: solid; border-left-color:#6c6; position:absolute; right:-40px; top:0px; } #sharpContainer{ width:100%; height: 600px; } #sharpContainer .center{ top:200px; left:300px; } #sharpContainer .top{ top:20px; left:300px; } #sharpContainer .top-left{ top:110px; left:140px; } #sharpContainer .top-right{ top:110px; left:460px; } #sharpContainer .bottom{ top:380px; left:300px; } #sharpContainer .bottom-left{ top:290px; left:140px; } #sharpContainer .bottom-right{ top:290px; left:460px; } </style> </head> <body> <p id="sharpContainer"> <p class="sharp center"> </p> <p class="sharp top"> </p> <p class="sharp top-left"> </p> <p class="sharp top-right"> </p> <p class="sharp bottom"> </p> <p class="sharp bottom-left"> </p> <p class="sharp bottom-right"> </p> </p> </body> </html>
六邊形繪製其實是很簡單的效果,只要我們了解如何繪製三角形和使用:before,:after偽類樣式即可。以後我們在專案中就可以加入更多的不規則的圖形了
以上就是本文的全部內容,希望對大家的學習有所幫助,更多相關內容請關注PHP中文網!
相關推薦:
利用CSS3的border-radius實作繪製太極及愛心的圖案
##
以上是關於CSS3繪製六邊形的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!