在 RaphaelJS 中制作 100% 宽度的图表?
我在Flash & 中看到过图表。基本上可以很好地适应浏览器大小或它们所在的灵活元素的东西......我不太熟悉 raphaelJS 但你能做到这一点吗?如果可以,怎么做?
I have seen graphs in Flash & stuff that basically adapt nicely to whatever the size of the browser or flexible element they are inside of.... I'm not really too well versed with raphaelJS but can you do this, and if so, how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 raphaeljs 中,您可以对 Raphael 对象调用 .setSize 来更新其大小。为了适应浏览器窗口大小的运行时变化,您可以响应窗口调整大小事件。使用 jQuery,你可以这样做:
In raphaeljs, you can call .setSize on a Raphael object to update its size. To adapt to runtime changes in browser window size, you can respond to a window resize event. Using jQuery, you could do:
这将为您提供响应式 SVG
This will get you a responsive SVG
通常你可以将宽度设置为 %100 并在 SVG 中定义一个 viewBox。但是,Raphael JS 直接在 SVG 元素上手动设置宽度和高度,这就扼杀了这种技术。
波什的回答很好,但它扭曲了我的纵横比。必须调整一些东西才能使其正常工作。此外,还包括一些维持最大大小的逻辑。
Normally you could set the width to %100 and define a viewBox within SVG. But, Raphael JS manually set a width and height directly on your SVG elements, which kills this technique.
Bosh's answer is great, but it was distorting the aspect ratio for me. Had to tweak a few things to get it working correctly. Also, included some logic to maintain a maximum size.