我們的網(wǎng)頁(yè)因?yàn)?CSS 而呈現(xiàn)千變?nèi)f化的風(fēng)格。這一看似簡(jiǎn)單的樣式語(yǔ)言在使用中非常靈活,只要你發(fā)揮創(chuàng)意就能實(shí)現(xiàn)很多比人想象不到的效果。特別是隨著 CSS3 的廣泛使用,更多新奇的 CSS 作品涌現(xiàn)出來(lái)。
今天給大家?guī)?lái) CSS 三角形繪制方法
復(fù)制代碼 代碼如下:
#triangle-up {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
復(fù)制代碼 代碼如下:
#triangle-down {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 100px solid red;
}
復(fù)制代碼 代碼如下:
#triangle-left {
width: 0;
height: 0;
border-top: 50px solid transparent;
border-right: 100px solid red;
border-bottom: 50px solid transparent;
}
復(fù)制代碼 代碼如下:
#triangle-right {
width: 0;
height: 0;
border-top: 50px solid transparent;
border-left: 100px solid red;
border-bottom: 50px solid transparent;
}
復(fù)制代碼 代碼如下:
#triangle-topleft {
width: 0;
height: 0;
border-top: 100px solid red;
border-right: 100px solid transparent;
}
復(fù)制代碼 代碼如下:
#triangle-topright {
width: 0;
height: 0;
border-top: 100px solid red;
border-left: 100px solid transparent;
}
復(fù)制代碼 代碼如下:
#triangle-bottomleft {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-right: 100px solid transparent;
}
復(fù)制代碼 代碼如下:
#triangle-bottomright {
width: 0;
height: 0;
border-bottom: 100px solid red;
border-left: 100px solid transparent;
}
您可能感興趣的文章:- js+css繪制顏色動(dòng)態(tài)變化的圈中圈效果
- CSS繪制五角星
- 原生JS檢測(cè)CSS3動(dòng)畫(huà)是否結(jié)束的方法詳解
- 微信小程序CSS3動(dòng)畫(huà)下拉菜單效果
- CSS3 動(dòng)畫(huà)卡頓性能優(yōu)化的完美解決方案
- vue 1.0 結(jié)合animate.css定義動(dòng)畫(huà)效果
- CSS3結(jié)合jQuery實(shí)現(xiàn)動(dòng)畫(huà)效果及回調(diào)函數(shù)的實(shí)例
- 如何在CSS中繪制曲線(xiàn)圖形及展示動(dòng)畫(huà)