欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

純css繪制蜂巢六邊形效果

  發(fā)布時間:2014-05-08 14:47:02   作者:佚名   我要評論
這篇文章主要介紹了純css繪制蜂巢六邊形效果,需要的朋友可以參考下
純CSS繪制的六邊形




復(fù)制代碼
代碼如下:

<html>
<head>
<title>Draw Hive</title>
</head>
<style type="text/css">
.hexagon {
display: inline;
float: left;
}
#second {
margin-left: 4px;
}
#third {
clear: left;
margin-left: 54px;
margin-top: -28px;
}
.hiveTop{
width: 0;
border: 30px solid #6C6;
border-top: none;
border-bottom: 30px solid #6C6;
border-left: 52px solid transparent;
border-right: 52px solid transparent;
}
.hiveCenter {
width: 104px;
height: 60px;
background-color: #6C6;
}
.hiveBottom {
width: 0;
border: 30px solid #6C6;
border-bottom: none;
border-top: 30px solid #6C6;
border-left: 52px solid transparent;
border-right: 52px solid transparent;
}
</style>
<body>
<div class="hexagon" id="first">
<div class="hiveTop">
</div>
<div class="hiveCenter">
</div>
<div class="hiveBottom">
</div>
</div>
<div class="hexagon" id="second">
<div class="hiveTop">
</div>
<div class="hiveCenter">
</div>
<div class="hiveBottom">
</div>
</div>
<div class="hexagon" id="third">
<div class="hiveTop">
</div>
<div class="hiveCenter">
</div>
<div class="hiveBottom">
</div>
</div>
</body>
</html>

相關(guān)文章

  • CSS實(shí)現(xiàn)圖片背景填充的六邊形的示例代碼

    這篇文章主要介紹了CSS實(shí)現(xiàn)圖片背景填充的六邊形的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-11-30
  • css實(shí)現(xiàn)六邊形圖片的示例代碼

    這篇文章主要介紹了css實(shí)現(xiàn)六邊形圖片的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-11-30
  • CSS 實(shí)現(xiàn)蜂巢/六邊形圖集的示例代碼

    這篇文章主要介紹了CSS 實(shí)現(xiàn)蜂巢/六邊形圖集的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起
    2020-03-05
  • css畫正六邊形的兩種方法

    本文給大家分享css畫正六邊形的兩種方法,每種方法都不錯,需要的朋友跟隨腳本之家小編一起看看吧
    2018-07-06
  • 純css實(shí)現(xiàn)的六邊形(蜂窩)導(dǎo)航效果(支持hover/兼容瀏覽器)

    在之前的文章中曾經(jīng)寫到過一篇“三角形變形記之純css實(shí)現(xiàn)的分布導(dǎo)航條效果”,其中用到了邊框?qū)崿F(xiàn)三角形的效果。最近又折騰了一個六邊形的蜂窩效果給大家蹂躪。主要用到了
    2013-02-05
  • 使用CSS實(shí)現(xiàn)六邊形的圖片效果

    這篇文章主要介紹了使用CSS實(shí)現(xiàn)六邊形的圖片效果,這個效果的難點(diǎn)在于六邊形的繪制, 那么接下來我們就一起來看下作者是怎么實(shí)現(xiàn)他的吧
    2022-07-26

最新評論