Cufon 字体替换:如何定义“hoverables”

发布于 2024-10-31 15:27:15 字数 431 浏览 0 评论 0原文

使用 Cufon 字体替换,您可以像这样定义悬停状态:

<script type="text/javascript">
   Cufon.replace('h1', {
     hover: true,
     hoverables: { strong: true, em: true }
     });
   });
</script> 

Is it possible to描述hoverables的特定CSS类吗?

(我有一个表现奇怪的JQuery手风琴菜单,并且我认为定义这些可悬停对象将解决问题,如果有帮助的话,这里是菜单)。

With Cufon font replacement, you can define hover states like this:

<script type="text/javascript">
   Cufon.replace('h1', {
     hover: true,
     hoverables: { strong: true, em: true }
     });
   });
</script> 

Is it possible to describe specific CSS classes for the hoverables?

(I have a JQuery accordion menu that is behaving strangely, and I think defining these hoverables will solve the problem. If it helps at all, here is the menu).

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

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

发布评论

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

评论(2

℡Ms空城旧梦 2024-11-07 15:27:15

Cufon('h1', {    
  fontWeight: 'normal',    
  hover: { fontWeight: 'bold' }
});

我想这应该有用


Cufon('h1', {    
  fontWeight: 'normal',    
  hover: { fontWeight: 'bold' }
});

This should work i guess

甜警司 2024-11-07 15:27:15

您可以通过将对象传递给 hover< 来定义 Cufon 目标上的悬停样式/code> 属性,而不是像您在问题中尝试的那样的 hoverables 属性:

Cufon.replace('h1', {
   hover: { fontWeight: bold, textDecoration: italic }
});

hoverables 属性可让您在 a 标签 - Cufon 默认只在锚标签上启用悬停样式,因为 IE6 不支持其他任何内容,但您可以选择使用以下语法启用对其他元素的支持:

Cufon.replace('h1', {
   hover: { fontWeight: bold, textDecoration: italic },
   hoverables: { a: true, img : true }
});

You can define hover styles on Cufon targets by passing an object to the hover property, not to the hoverables property like you have attempted in your question:

Cufon.replace('h1', {
   hover: { fontWeight: bold, textDecoration: italic }
});

The hoverables property is available to allow you to enable hover state on elements other than a tags - Cufon defaults to only enabling hover styles on anchor tags because IE6 did not support anything else, but you can choose to enable support for other elements using the following syntax:

Cufon.replace('h1', {
   hover: { fontWeight: bold, textDecoration: italic },
   hoverables: { a: true, img : true }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文