Cufon 文本阴影 +悬停问题
我只希望文本阴影处于悬停状态。
**JS**
Cufon.replace('.headerright', {hover: true,'fontFamily' : 'League Gothic',textShadow:'0px 1px #cccccc'});
**CSS**
.headerright{text-transform:uppercase; font-size:76px;color:#CD7674;}
.headerright a:hover{color:#444444;}
I only want the text-shadow to be on the hover state.
**JS**
Cufon.replace('.headerright', {hover: true,'fontFamily' : 'League Gothic',textShadow:'0px 1px #cccccc'});
**CSS**
.headerright{text-transform:uppercase; font-size:76px;color:#CD7674;}
.headerright a:hover{color:#444444;}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的代码从一开始就定义了
textShadow
,而不是为hover
事件定义。查看 https://github.com/sorccu/cufon/wiki/styling,这应该适合你:
Your code is defining
textShadow
from the get-go rather than for thehover
event.Looking at https://github.com/sorccu/cufon/wiki/styling, this should work for you: