svg生成的图片在html能自适应,在vue不能自适应问题

发布于 2021-12-02 09:51:47 字数 3377 浏览 754 评论 1

svg生成的图片在html能自适应,在vue不能自适应问题

直接上代码:

html: 

 

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
  <title>Document</title>
  <style>
    .container {
      width: 100%;
    }

    .line-wrap {
      margin: 0 auto;
    }

    .circle-load-rect-svg {
      margin: 10px auto;
    }

    .g-rect-path {
      fill: none;
      stroke-width: 10;
      stroke: #60a4e7;
      stroke-linejoin: round;
      stroke-linecap: round;
    }

    svg {
      display: block;
      position: absolute;
    }
  </style>
</head>

<body>
  <div class="">



    <div class="container">
      <div class="line-wrap">

        <svg version="1.1" xml:space="preserve" class="circle-load-rect-svg" width="500" height="250" viewbox="0 0 1100 250">

          <polyline points="20 5, 20 150,500 150,500 200" fill="none" class="g-rect-path" />

          <polyline points="270 5, 270 150,515 150,515 200" fill="none" class="g-rect-path" />

          <polyline points="530 5, 530 200" fill="none" class="g-rect-path" />

          <polyline points="780 5, 780 150,545 150,545 200" fill="none" class="g-rect-path" />

          <polyline points="1030 5, 1030 150,560 150,560 200" fill="none" class="g-rect-path" />

        </svg>


      </div>
    </div>

  </div>
</body>

</html>

效果图:

 

但在新创建一个vue文件下,效果就不一样的。根本不能自适应

vue代码如下:

<template>
  <div class="hello">
    <div class="container">
      <div class="line-wrap">
        <svg version="1.1" xml:space="preserve" class="circle-load-rect-svg"  width="500" height="250" viewbox="0 0 1100 250">

          <polyline points="20 5, 20 150,500 150,500 200" fill="none" class="g-rect-path" />

          <polyline points="270 5, 270 150,515 150,515 200" fill="none" class="g-rect-path" />

          <polyline points="530 5, 530 200" fill="none" class="g-rect-path" />

          <polyline points="780 5, 780 150,545 150,545 200" fill="none" class="g-rect-path" />

          <polyline points="1030 5, 1030 150,560 150,560 200" fill="none" class="g-rect-path" />

        </svg>
      </div>
    </div>
  </div>
</template>

<script>
export default {

  data() {
    return {
     
    };
  }
};
</script>

<style >
.circle-load-rect-svg {
  margin: 10px;
}

.g-rect-path {
  fill: none;
  stroke-width: 10;
  stroke: #60a4e7;
  stroke-linejoin: round;
  stroke-linecap: round;
}

svg {
  /* width: 300px; */
  display: block;
  position: absolute;
}
</style>

效果如图

 

请问一下各位技术大佬~这是神马情况,是vue自身问题吗?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

凯凯我们等你回来 2021-12-03 16:05:11

太感谢了. 找了2个小时没找到咋回事, 原来是大小写的问题, 特地注册账号, 过来点赞感谢.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文