1.embed

1 <embed src="circle1.svg" type="image/svg+xml" />

2.object

1 <object data="circle1.svg" type="image/svg+xml"></object>

3.iframe

1 <iframe src="circle1.svg"></iframe>

4直接嵌入html

1 <html>
2 <body>
3     <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
4       <circle cx="100" cy="50" r="40" stroke="black"
5       stroke-width="2" fill="red"/>
6     </svg>
7 </body>
8 </html>

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-09
  • 2022-01-20
  • 2022-12-23
  • 2021-11-13
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案