在所选元素上禁用 cufon

发布于 2024-12-02 19:09:12 字数 118 浏览 1 评论 0原文

有没有办法禁用所选 div 中所有元素的 cufon ?几乎整个页面我都使用 cufon。但我希望有一个 div 采用 Arial 格式。有什么办法吗?我尝试过类似 element:not(.class) 但没有任何结果。

Is there a way to disable cufon on all elements in selected div? Almost on whole page I use cufon. But I want one div to be in Arial. Is there any way? I've tried something like element:not(.class) but without any results.

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

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

发布评论

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

评论(1

蓝眼睛不忧郁 2024-12-09 19:09:12

更新:

我也在尝试这样做,似乎找到了解决方案!利用 jQuery 的 :not 选择器:

 Cufon.replace('h1, h2:not(.question), .pageheader', { 
 color: '-linear-gradient(white, #777777)', 
 fontFamily: 'Unisans', 
 textShadow: '-2px 2px rgba(0,0,0,1)' }); 

这至少可以从 Firefox、Safari、Chrome 和 IE 中的 cufon 替换中排除 h2.question 类。 :)

Update:

I'm trying to do this as well, seem to have found a solution! Make use of jQuery's :not selector:

 Cufon.replace('h1, h2:not(.question), .pageheader', { 
 color: '-linear-gradient(white, #777777)', 
 fontFamily: 'Unisans', 
 textShadow: '-2px 2px rgba(0,0,0,1)' }); 

This excludes the class h2.question from the cufon replace in Firefox, Safari, Chrome, and IE at least. :)

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