外部 CSS 来设置 VML 样式
是否可以使用外部 CSS 文件来设置 VML 对象的填充或描边颜色等属性的样式?顺便说一句,我正在使用 Raphael 为 IE 创建 VML 形状。
谢谢
is it possible to use external CSS file to style properties such as fill or stroke colour of VML objects? By the way, I'm using Raphael to create my VML shapes for IE.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 RaphaelJS 设置给定节点的 id 属性...
...并使用 CSS 对其进行样式设置:
我认为您可以使用 class 属性执行相同的操作而不是id(待验证)。然后,您将使用 .className JavaScript 属性。
You can set the id attribute of the given node with RaphaelJS...
...and style it with CSS:
I think you could do the same thing with the class attribute instead of id (to be verified). You would then use the .className JavaScript property.