库丰悬停和更改字体语法

发布于 2024-08-30 12:52:19 字数 212 浏览 3 评论 0原文

有人可以帮我重写下面的语法以使其正确吗?

我希望在接受 :hover 的同时用我的字体替换字体,这样当我将鼠标悬停在它上面时我的按钮就会改变。

 Cufon('button', {
    fontFamily: 'Disgrunged A',
    hover: {
        color: '#ed1c24'
    }
 });

Could someone help me rewrite this syntax below to get it right.

I want the font to be replaced by my font whilst accepting the :hover so my button will change when i hover over it.

 Cufon('button', {
    fontFamily: 'Disgrunged A',
    hover: {
        color: '#ed1c24'
    }
 });

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

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

发布评论

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

评论(2

魂ガ小子 2024-09-06 12:52:19

您可以尝试将按钮添加到悬停列表

Cufon('button', {
    fontFamily: 'Disgrunged A',
    hover: {
        color: '#ed1c24'
    },
    hoverables: { button:true }
 });

参考:Cufon API

悬停装置
定义哪些元素
:hover 与 一起使用。默认为链接
只是因为IE6不能处理任何事情
否则。
示例:{ tag: true, .. }
默认:{ a: true }

You could try to add button to hoverables list

Cufon('button', {
    fontFamily: 'Disgrunged A',
    hover: {
        color: '#ed1c24'
    },
    hoverables: { button:true }
 });

Ref: Cufon API

hoverables
Defines which elements
:hover is used with. Defaults to links
only as IE6 can’t handle anything
else.
example : { tag: true, .. }
default : { a: true }

温柔戏命师 2024-09-06 12:52:19

我不知道 cufon,但我认为语法必须是这样的:

 Cufon.replace('button:hover', {
    fontFamily: 'Disgrunged A'
 });

i don't know cufon, but i think the syntax has to be like this:

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