溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

使用css怎么實現(xiàn)一個三角形

發(fā)布時間:2021-04-06 15:35:37 來源:億速云 閱讀:155 作者:Leah 欄目:web開發(fā)

使用css怎么實現(xiàn)一個三角形?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

使用CSS畫三角形

第一步

首先,先來一個div,然后給這個div加一層border,并且給上下左右border分別加上不同顏色,以便觀察,代碼和效果如下:

.trangle{
  width: 100px;
  height: 100px;
  border: 100px solid #000;
  border-top-color: red;
  border-bottom-color: yellow;
  border-left-color: blue;
  border-right-color: green;
}
<div class="trangle"></div>

使用css怎么實現(xiàn)一個三角形

第二步

接著,將這個div的width變?yōu)?,我們再來看看效果??梢钥吹剑捎赿iv的寬度變成了0,左右兩邊的border“吸”在了一起,同時上下的border變成了三角形,好像快要完成了,別急,再看看第三步。

.trangle{
  width: 0px;
  height: 100px;
  border: 100px solid #000;
  border-top-color: red;
  border-bottom-color: yellow;
  border-left-color: blue;
  border-right-color: green;
}
<div class="trangle"></div>

使用css怎么實現(xiàn)一個三角形

第三步

然后,再將這個div的height變?yōu)?,效果如下。我們可以看到,由于div的高度也變成了0,上下兩個border也“吸”在了一起,同時上下的border也變成了三角形,到現(xiàn)在為止,四個三角形已經(jīng)出來了

.trangle{
  width: 0px;
  height: 0px;
  border: 100px solid #000;
  border-top-color: red;
  border-bottom-color: yellow;
  border-left-color: blue;
  border-right-color: green;
}
<div class="trangle"></div>

使用css怎么實現(xiàn)一個三角形

第四步

最后,就看你想要哪個角啦,想要哪個角就把其余三個border設(shè)為透明即可。例如,我想要最上面的三角形,那就把下、左、右設(shè)為透明,代碼和效果如下:

.trangle{
  width: 0px;
  height: 0px;
  border: 100px solid #000;
  border-top-color: red;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
<div class="trangle"></div>

使用css怎么實現(xiàn)一個三角形

簡化代碼

其實,我們不需要把四個border都設(shè)置一遍,只需設(shè)置你想要畫的三角形所涉及到的三條邊的border即可。以上步的畫最上面的三角形為例,只需設(shè)置上、左、右三條邊即可,并且要上三角形,就把左右border設(shè)為透明,代碼和效果如下:

.trangle{
  width: 0px;
  height: 0px;
  border-top: 100px solid red;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
}
<div class="trangle"></div>

CSS 實現(xiàn)繪制各種三角形(各種角度)

Triangle Up

使用css怎么實現(xiàn)一個三角形

#triangle-up {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 100px solid red;
}

Triangle Down

使用css怎么實現(xiàn)一個三角形

#triangle-down {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 100px solid red;
}

Triangle Left

使用css怎么實現(xiàn)一個三角形

#triangle-left {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-right: 100px solid red;
    border-bottom: 50px solid transparent;
}

Triangle Right

使用css怎么實現(xiàn)一個三角形

#triangle-right {
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-left: 100px solid red;
    border-bottom: 50px solid transparent;
}

Triangle Top Left

使用css怎么實現(xiàn)一個三角形

#triangle-topleft {
    width: 0;
    height: 0;
    border-top: 100px solid red;
    border-right: 100px solid transparent;
}

Triangle Top Right

使用css怎么實現(xiàn)一個三角形

#triangle-topright {
    width: 0;
    height: 0;
    border-top: 100px solid red;
    border-left: 100px solid transparent;
 
}

Triangle Bottom Left

使用css怎么實現(xiàn)一個三角形

#triangle-bottomleft {
    width: 0;
    height: 0;
    border-bottom: 100px solid red;
    border-right: 100px solid transparent;
}

Triangle Bottom Right

使用css怎么實現(xiàn)一個三角形

#triangle-bottomright {
    width: 0;
    height: 0;
    border-bottom: 100px solid red;
    border-left: 100px solid transparent;
}

看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI