使用Jquery调整Svg图像大小

时间:2016-04-14 01:18:17

标签: javascript jquery svg

我正在开发一个PHP脚本,其中包含一个内置SVG的页面。我想要做的是使用Jquery调整大小功能。我在div上尝试了这个并且它工作正常但是当我想用它来调整SVG内部的图像时它不起作用。 这是代码:

doiud
<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="800" height="420" id="svg">
<image height="120" width="120" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://designpieces.com/wp-content/uploads/2013/04/chrome.png" ></image></svg>

Jquery代码:

$('.resize').resizable({
    ghost: true
            });
            $('image').resizable({
    ghost: true
            });

http://jsfiddle.net/nCAkM/39/

2 个答案:

答案 0 :(得分:2)

试试这个 jsfiddle

将div包裹在图像上。

HTML

<div class="resize">
resize helper
</div>


<svg xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" version="1.1" width="800" height="420" id="svg">
    <image height="120" width="120" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://designpieces.com/wp-content/uploads/2013/04/chrome.png" ></image>
</svg>

脚本

$('.resize').resizable({
    ghost: true,
    resize: function( event, ui ) {
        var width = ui.size.width;
      var height = ui.size.height;
      $('image').attr('width',width);
      $('image').attr('height',height);
    }
            });

var position = $('svg').position();
$('.resize').css('top',position.top);
$('.resize').css('left',position.left);

CSS

.resize{
  height: 120px;
  width: 120px;
  position:absolute;
  z-index:0;
}

答案 1 :(得分:0)

感谢您的提示。我能够将svg对象包装在div中。然后,我使用了调整大小的ui事件大小来设置对象上的CSS。

HTML

  <div id="divVirtualKeyboard" style="display: none; position: absolute; top: 200px; left: 100px">
    <div>
      <object id="canvasKeyboard" data="static/EmulatorKeyboard.svg" type="image/svg+xml" width="376" height="214" style="pointer-events:none;"></object>
    </div>
  </div>

JS

  div.resizable(
    {
      aspectRatio: 376 / 214,
      resize: function (event, ui) {
        div.find('object').css('width', ui.size.width)
        div.find('object').css('height', ui.size.height)
      }
    });