Svg高于图像和比例

时间:2016-10-04 18:21:28

标签: java html svg jquery-svg

我有一个包含袋子图像的页面,在我放置svg叠加层的袋子图像上方,问题是svg没有覆盖在图像上而且没有响应。

工作示例: https://jsbin.com/lilaxizizo/1/edit

代码:

<!DOCTYPE html>
<html>
<head>
    <title>SVG </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>

</head>
<body>
<div class="container">
<div id="wrapper">
<img  class="img-responsive" src="duffell_bag.jpg"  alt="Planets" usemap="#bag">


<svg style="position:absolute;z-index:10" height="300" width="500">
  <polygon points="103,79,119,74,136,68,173,67,202,70,262,78,316,89,380,97,393,121,402,157,407,184,418,216,424,249,419,261,404,274,359,288,332,294,271,284,195,266,142,255,83,238,59,223,64,177" style="fill-opacity:0.1;fill:lime;stroke:purple;stroke-width:1" />
  Sorry, your browser does not support inline SVG.
</svg>

</div>
</div>


</body>

</html>

2 个答案:

答案 0 :(得分:2)

首先,如果您希望SVG具有响应能力,则需要为其指定viewBox。有关详细信息,请参阅此问题。

How can I make an svg scale with its parent container?

接下来,如果您希望SVG位于图像顶部,请使用<div>postion: relative将它们包围起来。这样,如果你绝对定位SVG,它将相对于div而不是整个页面。

&#13;
&#13;
div {
  position: relative;
}

img, svg {
  width: 500px;
}

svg {
  position: absolute;
  top: 0;
  left: 0;
}
&#13;
<div>
  
  <img  class="img-responsive" src="http://i.imgur.com/icQzdFl.jpg">

  <svg height="300" width="500">
    <polygon points="103,79,119,74,136,68,173,67,202,70,262,78,316,89,380,97,393,121,402,157,407,184,418,216,424,249,419,261,404,274,359,288,332,294,271,284,195,266,142,255,83,238,59,223,64,177" style="fill-opacity:0.1;fill:lime;stroke:purple;stroke-width:1" />
   </svg>

</div>
&#13;
&#13;
&#13;

答案 1 :(得分:-1)

将'margin-top'添加到svg元素。我测试了它,'-305px'的值似乎可以解决问题。

<svg style="margin-top:-305px;position:absolute;z-index:10" height="300" width="500">