HTML中嵌入SVG图片的N种方式原文地址:

https://segmentfault.com/a/1190000010942431

设置embed标签中的svg尺寸为适应父容器大小:(embed标签id为jimjim)

var embed = document.querySelector('#jimjim');
var d = embed.getSVGDocument();
var svg = d.querySelector('svg');
svg.setAttribute("viewBox","0 0 660 342");

 

相关文章:

  • 2022-12-23
  • 2021-11-19
  • 2021-10-31
  • 2021-07-12
  • 2022-12-23
  • 2022-02-17
  • 2021-12-04
猜你喜欢
  • 2021-07-29
  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案