溫馨提示×

溫馨提示×

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

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

使用CSS制作箭頭符號的方法

發(fā)布時(shí)間:2020-08-29 11:08:19 來源:億速云 閱讀:465 作者:小新 欄目:web開發(fā)

這篇文章主要介紹了使用CSS制作箭頭符號的方法,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。

箭頭符號我們是經(jīng)??梢钥吹降?,那么我們?nèi)绾卧诓焕脠D像的情況下使用CSS制作箭頭符號呢?

話不多說,下面我們直接來看正文~

用CSS制作的箭頭圖標(biāo)的方法

只需要使用CSS就可以創(chuàng)建箭頭而不需要利用圖像

首先,讓我們來看看如何實(shí)現(xiàn)一個箭頭,我將來制作一個從左上角到右下角的L形箭頭。

一個直角轉(zhuǎn)彎的箭頭。

代碼如下

HTML代碼

<!DOCTYPE html>
<html>
  <head>
  <meta charset="utf-8">
    <title>CSS arrow</title>
    <link rel="stylesheet" type="text/css" href="sample.css">
   <meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
  </head>
  <body>
   <div class="arrow"></div>
  </body>
</html>

CSS代碼

sample.css

.arrow{
  position: relative;
  width: 200px;
  height: 50px;
  border-top: 8px solid #5bc0de;
  border-right: 8px solid #5bc0de;
  box-sizing: border-box;
}
.arrow::after{
  content: "";
  position: absolute;
  bottom: -14px;
  right: -17px;
  border-top: 14px solid #5bc0de;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

運(yùn)行結(jié)果

在瀏覽器上顯示如下效果

使用CSS制作箭頭符號的方法

接下來介紹的幾種箭頭符號的制作HTML代碼與上述相同,我們主要通過更改CSS代碼來實(shí)現(xiàn)

三角形的箭頭

CSS代碼

.arrow{
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 1px solid #ff0000;
  -webkit-border-radius: 25%;
  border-radius: 25%;
}

.arrow::after{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 5px;
  box-sizing: border-box;
  width: 3px;
  height: 3px;
  border: 3px solid transparent;
  border-left: 3px solid #ff0000;
}

運(yùn)行效果如下

將顯示一個帶有紅色三角形的圖標(biāo)

使用CSS制作箭頭符號的方法

“大于號”的箭頭

CSS代碼

.arrow{
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.arrow::before{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #5bc0de;
  border-right: solid 2px #5bc0de;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
}

運(yùn)行結(jié)果

在瀏覽器上運(yùn)行效果如下

使用CSS制作箭頭符號的方法

在網(wǎng)頁上這個箭頭符號是經(jīng)??梢杂玫降?/p>

制作向上的箭頭

CSS代碼

.arrow{
  width: 0px;
  border-color: #d9534f;
  border-style: solid;
  border-width: 30px;
  border-left-color: transparent;
  border-top-color: transparent;
  border-right-color: transparent;
}

運(yùn)行效果

在瀏覽器上顯示如下效果

使用CSS制作箭頭符號的方法

最后我們來看一下傳統(tǒng)向右的箭頭符號

CSS代碼

.arrow {
  display:inline-block;
  height:40px;
  width:80px;
  background-color:#5bc0de;
  position:relative;
  top:40px;
}

.arrow:before {
  position:absolute;
  content:"";
  width:0;
  height:0;
  border:60px solid transparent;
  border-left:60px solid #5bc0de;
  left:80px;
  top:-37px;
}

運(yùn)行結(jié)果

在瀏覽器上將顯示如下所示的效果

使用CSS制作箭頭符號的方法

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享使用CSS制作箭頭符號的方法內(nèi)容對大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,遇到問題就找億速云,詳細(xì)的解決方法等著你來學(xué)習(xí)!

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

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

css
AI