Cufon 使用 jQuery 切换 css 可见性仅在 IE8 中失败

发布于 2024-11-09 13:05:58 字数 1126 浏览 0 评论 0原文

我正在使用 jQuery 和 cufon 字体替换。它工作得很好,但是,我正在编写脚本来消除较慢连接上的 FOUC(无样式内容的闪存)问题。

为此,我使用 css 将 cufon 替换元素的可见性切换为“隐藏”,然后在文档末尾,我调用 jQuery 以重新打开可见性。

这在我测试过的所有浏览器中都表现良好,除了 IE8。

您知道什么会导致 IE8 使用此脚本出现问题吗?

<script src="mythemelocation/js/cufon-yui.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/Delicious_500-Delicious_700-Delicious_italic_500-Delicious_italic_700.font.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/League_Gothic_400.font.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/Vegur_400-Vegur_700.font.js" type="text/javascript"></script>
<script type="text/javascript">Cufon.set('fontFamily', 'League Gothic').replace('h1')('h2')('h4')('.siteTitle')('.tagline');</script>  
<script type="text/javascript"> Cufon.now(); </script>  
<script type='text/javascript'>jQuery(document).ready(function(){jQuery('#accordion-1, .siteTitle,.posttitle,.tagline,h4').css('visibility', 'visible');});</script>
</body>

I'm using jQuery along with cufon font replacement. Its been working great, however, I'm working on script to eliminate the FOUC (flash of unstyled content) issue on slower connections.

To do this, I'm using css to toggle the visibility of the cufon replacement elements to "hidden", then at the end of the document, I have a call to jQuery to toggle visibility back on.

This works great in all browsers I've tested against, except IE8

Any ideas what would cause IE8 to have problems with this script?

<script src="mythemelocation/js/cufon-yui.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/Delicious_500-Delicious_700-Delicious_italic_500-Delicious_italic_700.font.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/League_Gothic_400.font.js" type="text/javascript"></script>
<script src="wp-content/plugins/fonts/Vegur_400-Vegur_700.font.js" type="text/javascript"></script>
<script type="text/javascript">Cufon.set('fontFamily', 'League Gothic').replace('h1')('h2')('h4')('.siteTitle')('.tagline');</script>  
<script type="text/javascript"> Cufon.now(); </script>  
<script type='text/javascript'>jQuery(document).ready(function(){jQuery('#accordion-1, .siteTitle,.posttitle,.tagline,h4').css('visibility', 'visible');});</script>
</body>

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

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

发布评论

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

评论(1

甜心小果奶 2024-11-16 13:05:58

使用 .show() 而不是 .css('visibility', 'visible')

因此您的脚本将如下所示:

jQuery(function($){$('#accordion-1,.siteTitle,.posttitle,.tagline,h4').show()});

另外,您不需要为内联脚本编写 3 个

Use .show() instead of .css('visibility', 'visible').

So your script would look like this:

jQuery(function($){$('#accordion-1,.siteTitle,.posttitle,.tagline,h4').show()});

Also you don't need to write 3 <script> elements for your inline scripts.

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