有哪些方法可以加快 cufon 的加载时间?

发布于 2024-08-24 02:31:20 字数 295 浏览 4 评论 0原文

我使用 cufon 与 jQuery 进行字体替换,用于构建在 drupal 之上的网站,并带有几个附加到其自己的 JS 文件的模块。我应用了 cufon 的文本似乎有闪烁。我正在 firebug 中分析我的 JS,看起来 cufon 需要很长时间才能加载。

我尝试过的几件事:

  • 在结束正文标记之前添加 cufon.now
  • 将 $(document).ready() 中的任何 cufon.replace 移动到页面上该元素之后的 JS 位。

这些似乎都无助于推迟。有人有什么建议吗?

I'm using cufon for font replacement with jQuery for a site built on-top of drupal with a couple modules that tack on its own JS files. There seems to be a flicker in the text that I have cufon applied to. I'm profiling my JS in firebug and it looks like cufon is taking forever to load.

A couple things that I've tried:

  • adding cufon.now before the closing body tag
  • moved any cufon.replace from within $(document).ready() to including the bit of JS right after that element on the page.

None of that seems to be helping the delay. Does anybody have any suggestions?

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

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

发布评论

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

评论(1

揽清风入怀 2024-08-31 02:31:20

当然有,在 标记之前添加:

Cufon.now 将加快字体加载速度,并防止“闪烁”

Sure there is, add this just before </body> tag:

<script type="text/javascript">
Cufon.now();
</script>

Cufon.now will speed up the font loading, as well as prevent "flickering"

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