自学内容网 自学内容网

SVG 字体 – JS 脚本(21)

简单的SVG脚本示例,它会在单击按钮时更改SVG矩形的尺寸

<svg width="500" height="100">
     <rect id="rect1" x="10" y="10" width="50" height="80" style="stroke: #000000; fill: none" />
</svg>
<input id="button1" type="button" value="Change Dimensions" onclick="changeDimensions()" />

<script>
  function changeDimensions() {
    document.getElementById("rect1").setAttribute("width", "100");
  }
</script>

原文地址:https://blog.csdn.net/weixin_40639095/article/details/135952632

免责声明:本站文章内容转载自网络资源,如侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!