第一种 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