jquery 模板内的 Raphael 文本元素

发布于 2024-12-20 08:08:45 字数 191 浏览 1 评论 0原文

我在出现的 jquery 模板元素内创建 raphael js 文本元素时遇到问题

,因为 raphael js 图形是在容器附加到 dom 之前创建的,所以 raphael 文本的位置发生了移动,

这仅适用于文本元素。直线、圆和其他都很好

有人遇到同样的问题吗? 除了不使用 jquery 模板之外还有什么解决方案吗?

I have a problem creating raphael js text elements inside a jquery template element

it appears, as raphael js graphics is created before the container is attached to the dom, the position of raphael text is shifted

this apply only to text elements. lines, circles and all the rest are fine

anyone had the same problem?
any solution other than not using jquery template?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

那些过往 2024-12-27 08:08:45

您应该延迟 Raphaël 代码,直到 DOM 完全加载:

$(window).load(function(){
    //Put Raphaël code here.
});

You should delay you Raphaël code until the DOM is fully loaded :

$(window).load(function(){
    //Put Raphaël code here.
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文