前端實現三角形的三種方法

第一種 HTML+CSS

<div class="box"></div>
  <style>
    .box{
      width:0;
      height:0;
      border:10px solid;
      border-color:transparent transparent red red ;
    }
  </style>

第二種 通過canvas

<div id="canvas"></div>
<script>
var canvas = document.getElementById('canvas');
 if (canvas.getContext){
   var ctx = canvas.getContext('2d');
    ctx.beginPath();
    ctx.moveTo(75,50);
    ctx.lineTo(100,75);
    ctx.lineTo(100,25);
    ctx.fill();
 }
</script>

第三種 SVG

<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" 
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">

<svg width="100%" height="100%" version="1.1"
xmlns="http://www.w3.org/2000/svg">

<polygon points="220,100 300,210 170,250"
style="fill:#cccccc;
stroke:#000000;stroke-width:1"/>
</svg>
<<拓展學習の三角形>>
<<拓展學習の梯形>>
<<拓展學習のcss實現梯形(各種形狀)的網頁佈局—transform的妙用>>

————————————————————————————————

版權聲明:本文爲CSDN博主「pen_wa」的原創文章,遵循 CC 4.0 BY-SA 版權協議,轉載請附上原文出處鏈接及本聲明。

原文鏈接:https://blog.csdn.net/qq_31598771/article/details/83180548

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章