如何将菜单上 Cufon 字体的悬停颜色更改为红色?
我用 Cufon 字体制作了一个菜单。它们正在工作,但我无法对字体产生悬停效果。这是我使用的代码
Cufon.replace('#tag', {
fontFamily: 'ChunkFive',
颜色: '白色',
悬停:真,
textShadow: '1px 1px #555' });
我希望将鼠标悬停在菜单链接上时使用蓝色。我怎样才能做到这一点?
谢谢, 尼拉德里
I have made a menu with Cufon fonts. They are working but I am unable to make HOVER effects on the font. Here is the code I used
Cufon.replace('#tag', {
fontFamily: 'ChunkFive',
color: 'White',
hover: true,
textShadow: '1px 1px #555' });
I wish to use BLUE color when hovering the mouse over a menu link. How can I do that?
Thanks,
Niladri
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加载悬停后,您应该使用 cufon.Refresh() 。每次对现有 cufon 元素进行修改时,都需要运行刷新来更新该元素。
此外,还可以尝试这篇文章 - http://galinsimeonov.com/?p=74。解释 Replace 的使用以及使用 Cufon 产生的 FOUC 效果。
You should use
cufon.Refresh()
after you load the hover. Everytime you make a modification to an existing cufon element, you need to run refresh to update the element.Additionally, also try this article - http://galinsimeonov.com/?p=74. Explains the use of Replace and also the FOUC effect that arises with using Cufon.