這篇文章主要為大家展示了“CSS怎樣制作箭頭圖標(biāo)”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“CSS怎樣制作箭頭圖標(biāo)”這篇文章吧。
成都創(chuàng)新互聯(lián)專注于平魯企業(yè)網(wǎng)站建設(shè),響應(yīng)式網(wǎng)站,商城網(wǎng)站建設(shè)。平魯網(wǎng)站建設(shè)公司,為平魯?shù)鹊貐^(qū)提供建站服務(wù)。全流程定制開發(fā),專業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)
css3功能非常強(qiáng)大,之前需要圖片完成的icon,現(xiàn)在我們只需要幾段css代碼就可以實(shí)現(xiàn)此功能。下面給大家分享純css制作的圓,橢圓,三角形箭頭圖標(biāo),非常使用,需要的朋友參考下吧
圓:
.yuan{
width:100px;
height:100px;
-moz-border-radius:50%;
-webkit-border-radius:50%;
border-radius:50%;
background-color:red;
}
橢圓
.oval {
width: 200px;
height: 100px;
background-color: red;
-moz-border-radius: 100px / 50px;
-webkit-border-radius: 100px / 50px;
border-radius: 100px / 50px;
}
箭頭:
.arrow{
content: '';
position: absolute;
width: 30px;
height: 30px;
border: 10px solid #f5b24a;
-webkit-transform: rotate(-135deg);
-moz-transform: rotate(-135deg);
-o-transform: rotate(-135deg);
-ms-transform: rotate(-135deg);
transform: rotate(-135deg);
border-top: none;
border-right: none;
top: 9px;
}
三角形:
.rencentle {
width: 0;
height: 0;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
以上是“CSS怎樣制作箭頭圖標(biāo)”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!