我正在尝试使用sIFR3获取truetype中的链接。它适用于所有普通的< h1>和< h2>项目,但不适用于< h2>内的链接。 sIFR正在取代< a>。正确,但结果是不可见的。当我单击文本所在的区域时,它会跟随链接。即使有指针光标。但是我的文字在哪里?
代用品:
sIFR.replace(vagroundbtf, {
selector: '#summary_normalx h2'
, css: [
'.sIFR-root { color:#000000; font-weight : bold;} a {color:#333333; text-decoration: none;} '
]
,wmode: 'transparent'
});
HTML的片段:
<div id="summary_normal">
<div id="article_92" class="entry clearing">
<div id="summary_normalx">
<h2>
<a href="some/link" id="show_article_92" title="Show">This is the title</a>
</h2>
:
BTW:当我删除css子句时,链接在右侧字体中可见,但在默认外观中(蓝色下划线)。
有什么想法吗?
罗埃尔
答案 0 :(得分:0)
试试这个:
sIFR.replace(vagroundbtf, {
selector: '#summary_normalx h2'
, css: [
'.sIFR-root { color:#000000; font-weight : bold;}',
'a {color:#333333; text-decoration: none;}'
]
,wmode: 'transparent'
});
顺便说一句。我现在更喜欢Cufón而不是sIFR