外部 CSS 来设置 VML 样式

发布于 2024-11-15 19:05:28 字数 93 浏览 2 评论 0原文

是否可以使用外部 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

抚你发端 2024-11-22 19:05:28

您可以使用 RaphaelJS 设置给定节点的 id 属性...

var c = paper.circle(10, 10, 10);
c.node.id = 'azerty';

...并使用 CSS 对其进行样式设置:

#azerty {/* write your CSS formatting here */}

我认为您可以使用 class 属性执行相同的操作而不是id(待验证)。然后,您将使用 .className JavaScript 属性。

You can set the id attribute of the given node with RaphaelJS...

var c = paper.circle(10, 10, 10);
c.node.id = 'azerty';

...and style it with CSS:

#azerty {/* write your CSS formatting here */}

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文