溫馨提示×

溫馨提示×

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

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

怎么用CSS實現(xiàn)三角形標記

發(fā)布時間:2022-02-28 15:31:44 來源:億速云 閱讀:126 作者:小新 欄目:web開發(fā)

這篇文章主要介紹怎么用CSS實現(xiàn)三角形標記,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

  代碼如下:

  CssMark.html

  <!DOCTYPEhtml>

  <html>

  <head>

  <metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>

  <title></title>

  <linkrel="stylesheet"type="text/css"href="CssMark.css"/>

  </head>

  <body>

  <divclass="TriMarkPre0"></div>

  <br/>

  <divclass="TriMarkPre1"></div>

  <br/>

  <divclass="TriMarkPre2"></div>

  <br/>

  <divclass="TriMark"></div>

  </body>

  </html>

  CssMark.css

  .TriMarkPre0{

  position:static;

  width:100px;

  height:100px;

  border:10pxsolidtransparent;

  border-color:#0058e2;

  }

  .TriMarkPre1{

  position:static;

  width:100px;

  height:100px;

  border:10pxsolidtransparent;

  border-left-color:#0058e2;

  }

  .TriMarkPre2{

  position:static;

  width:0px;

  height:0px;

  border:10pxsolidtransparent;

  border-left-color:#0058e2;

  }

  .TriMark{

  position:static;

  width:0px;

  height:0px;

  border:5pxsolidtransparent;

  border-left-color:#0058e2;

  }

  代碼詳解

  創(chuàng)建流程1:

  下面的代碼是繪制100x100像素區(qū)域的外框的代碼。這是一般代碼。

  執(zhí)行結果圖像頂部的方框對應于該代碼。

  <divclass="TriMarkPre0"></div>

  .TriMarkPre0{

  position:static;

  width:100px;

  height:100px;

  border:10pxsolidtransparent;

  border-color:#0058e2;

  }

  創(chuàng)建過程2:

  使用下面的代碼,僅繪制區(qū)域框架的左側。如果您繪制左側,您可以看到拐角部分是對角切割的。(當繪制4個邊時,只繪制一半以使每條線不重疊。)

  此代碼對應于將執(zhí)行結果圖像的第二個梯形向側面的代碼。

  <divclass="TriMarkPre1"></div>

  .TriMarkPre1{

  position:static;

  width:100px;

  height:100px;

  border:10pxsolidtransparent;

  border-left-color:#0058e2;

  }

  完成:

  可以使用以下代碼繪制三角形標記。

  通過減小前一行左側代碼的高度,行之間的部分將消失,它將顯示為三角形標記。

  執(zhí)行結果圖像的第三個圖對應于該代碼。

  <divclass="TriMarkPre2"></div>

  .TriMarkPre2{

  position:static;

  width:0px;

  height:0px;

  border:10pxsolidtransparent;

  border-left-color:#0058e2;

  }

  您可以通過減小線的邊框寬度來更改三角形標記的大小。

  執(zhí)行結果圖像的第四個圖對應于該代碼。

  <divclass="TriMark"></div>

  .TriMark{

  position:static;

  width:0px;

  height:0px;

  border:5pxsolidtransparent;

  border-left-color:#0058e2;

  }

以上是“怎么用CSS實現(xiàn)三角形標記”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關知識,歡迎關注億速云行業(yè)資訊頻道!

向AI問一下細節(jié)

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

css
AI