小编给大家分享一下css中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)
看完了这篇文章,相信你对“css中canvas画矩形和svg画矩形的示例”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。