有人可以帮我改写下面的语法,以使其正确。
我希望字体被我的字体替换,同时接受:hover所以当我将鼠标悬停在它上面时,我的按钮会发生变化。
Cufon('button', {
fontFamily: 'Disgrunged A',
hover: {
color: '#ed1c24'
}
});
答案 0 :(得分:3)
您可以尝试将按钮添加到hoverables列表
Cufon('button', {
fontFamily: 'Disgrunged A',
hover: {
color: '#ed1c24'
},
hoverables: { button:true }
});
参考:Cufon API
<强> hoverables 强>
定义哪些元素 :悬停与使用。默认为链接 只有IE6无法处理任何事情 别的。
示例:{tag:true,..}
默认:{a:true}
答案 1 :(得分:0)
我不知道cufon,但我认为语法必须是这样的:
Cufon.replace('button:hover', {
fontFamily: 'Disgrunged A'
});