如何缩放包含SVG的div?
我在页面上有一个
元素,其中包含 SVG。有时在程序执行期间,包含 div 的大小和位置会发生变化。不幸的是,SVG 跟随 div,但不随之缩放。当包含元素的大小发生变化时,如何使 SVG 变大或变小?我使用 Raphael 库来创建 SVG,使用 jQuery 来进行事件和 DOM 操作。
I've got a <div>
element on page with SVG in it. Sometimes during program execution the size and position of containing div changes. SVG follows the div but doesn't scale along with it, unfortunately. How can I get SVG bigger or smaller when the size of containing element changes?
I use Raphael library for SVG creation and jQuery for events and DOM manipulation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 setViewBox()
http://raphaeljs.com/reference.html#Paper.setViewBox
但是,如果您使用此缩放将不再有 1:1 的单位:像素比例。
You can use setViewBox()
http://raphaeljs.com/reference.html#Paper.setViewBox
However, if you use this for scaling there will no longer be a 1:1 unit:pixel scale.