有没有可以将 SVG 转换为 VML 和 VML 转换为 SVG 的 JavaScript 翻译器?
我有一些用 SVG 编写的文件,我希望我的 javascript 代码可以将 SVG 转换为 VML 如果它检测到用户的浏览器是 IE8, 是否可以?非常感谢!
I have some file written in SVG, I want my javascript code can convert the SVG to VML if it detect the user's browser is IE8,
Is it possible? Many thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有些 javascript 库会根据浏览器支持的内容自动生成 VML 或 SVG,但前提是您使用该库的方法来创建 svg。
Raphaël 可能是最知名的一位。
There are javascript libraries that will generate VML or SVG automatically depending on what the browser supports, but only if you use that library's methods for creating the svg.
Raphaël is probably the most well-known one.
是的,svg2vml.js - http://code.google.com/p/svg2vml/
适用于 SVG 图像。
他们仍在致力于添加 svg DOM 支持,以便通过 js 以编程方式动态创建和操作 svg。
Yes, svg2vml.js - http://code.google.com/p/svg2vml/
Works well for SVG images.
They are still working on adding svg DOM support for dynamic svg creation and manipulation programatically via js.