sIFR.replace(cochin, {
selector: 'h1',
tuneHeight:-5,
wmode: 'transparent'
, css: [
'.sIFR-root { text-align: left; font-weight: bold; color: #959595; line-height: 1em; leading: -2}'
, 'a { text-decoration: none;}'
, 'a:link { color: #959595; }'
, 'a:hover { color: #bbbaba; }'
]
, filters: {
DropShadow: {
distance: 1
, color: '#2d2a26'
, strength: 1
}
}
});
如果替换元素是链接并且如果wmode: 'transparent'
设置了,那么我注意到以下错误: - 如果我滚动页面,单击某处(不在 sifr 链接上),然后将鼠标悬停在 sifr 链接上我没有手(点)光标(默认显示了一个)。如果我单击一个链接,然后鼠标重新定位光标变为手形,然后链接将获得正常行为(悬停也处于活动状态)。如果我删除wmode: 'transparent'
,则链接正常运行。这在 Firefox 中很明显,在 IE 中它可以正常工作。
有人有类似的问题吗?