這篇文章帶給大家的內容是關於canvas畫矩形和svg畫矩形的兩種方法程式碼,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
1.canvas畫矩形
<!doctype html> <html> <head> <!--canvas画矩形--> <style> #huaban{ border:1px solid; } </style> <script> </script> <meta charset="UTF-8"> </head> <body> <canvas width="200" height="200" id="huaban"> </canvas> <script> var can=document.getElementById("huaban");//获得画板数据 var con=can.getContext('2d');//获得笔刷 con.fillStyle="red";//设置填充颜色 con.strokeStyle="blue";//设置线条颜色 con.fillRect(10,10,100,100);//填充画矩形 con.strokeRect(100,100,200,200);//线条画矩形 </script> </body> </html>
2.svg畫矩形
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <rect width="300" height="100"></rect> </svg>
rect 代表矩形;
rect 元素的width 和height 屬性可定義矩形的高度和寬度;
圓角矩形:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <rect width="300" height="100" style="fill:deepskyblue;stroke-width:2;stroke:rgb(0,0,0);fill-opacity:0.5;stroke-opacity:0.9;opacity:0.5;" x="0" y="20" rx="20" ry="20"></rect> </svg>
CSS 的fill-opacity 屬性定義填滿色彩透明度(合法的範圍是:0 - 1);
CSS的stroke-opacity 屬性定義邊框顏色的透明度(合法的範圍是:0 - 1);
CSS 的opacity 屬性定義整個元素的不透明度(合法的範圍是:0 - 1);
svg中旋轉的話可以用transform='rotate(45)
相關文章推薦:
以上是canvas畫矩形和svg畫矩形的兩種方法代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!