Cufon textShadow +悬停问题

时间:2010-06-12 23:07:06

标签: javascript jquery css cufon

我只希望text-shadow处于悬停状态。

**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;}

2 个答案:

答案 0 :(得分:3)

您的代码从一开始就定义textShadow而不是hover事件。

查看http://wiki.github.com/sorccu/cufon/styling,这应该适合您:

Cufon.replace('.headerright', {
    'fontFamily': 'League Gothic',
    hover: {
        textShadow: '0px 1px #cccccc'
    }
});

答案 1 :(得分:2)

Cufon.replace('.menu_item', {fontFamily: 'museo700_regular',hover: {textShadow: '0px 1px #fff'},textShadow:'0px 1px #fff', hover:true});