美文网首页
react 踩坑记

react 踩坑记

作者: 月半女那 | 来源:发表于2020-01-19 19:02 被阅读0次

    1. react 中展示svg

    <style>
     .svgLog {
       display: block;
       width: 100px;
       height: 100px;
       margin: 20px;
      }
     </style>
     <body>
    // 1.img标签
      <img src="./1.svg" class="svgLog" />
    // 2.embed
      <embed src="./1.svg" class="svgLog" />
    // 3. iframe
      <iframe  src="./1.svg"    class="svgLog"  ></iframe>
    // 4. object
      <object type="image/svg+xml" data="./1.svg"  class="svgLog">
        <param name="src" value="./1.svg" >
      </object>
    // 5. picture
      <picture>
          <source  srcset="./1.svg"  type="image/svg+xml" >
            <img src="1.svg" class="svgLog" />
        </picture>
      </picture>
    

    最终效果展示


    image.png

    相关文章

      网友评论

          本文标题:react 踩坑记

          本文链接:https://www.haomeiwen.com/subject/hltdzctx.html