我正在编写一个 PHP 脚本,其中包含一个包含 SVG 的页面。我想做的是使用 Jquery Resize 功能。我已经在 div 上尝试过了,它工作正常,但是当我想用它来调整 SVG 内图像的大小时,它不起作用。 这是代码:
<div class="resize">
doiud
</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>
Jquery 代码:
$('.resize').resizable({
ghost: true
});
$('image').resizable({
ghost: true
});
试试这个 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;
}
感谢您的提示。我能够将我的 svg 对象包装在 div 中。然后我使用 resize 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)
}
});