sIFR 链接不可见

发布于 2024-08-07 19:06:05 字数 819 浏览 7 评论 0原文

我正在尝试使用 sIFR3 获取 truetype 字体的链接。它适用于所有普通的

项目,但不适用于

内的链接。 sIFR 正在取代 正确,但结果是看不见的。当我单击文本所在的区域时,它会跟随链接。即使使用指针光标。但我的文字在哪里?

替换器:

 sIFR.replace(vagroundbtf, {
   selector: '#summary_normalx h2'
   , css: [
      '.sIFR-root { color:#000000; font-weight : bold;}  a {color:#333333; text-decoration: none;} '
       ] 
   ,wmode: 'transparent'
    });  

HTML-snippet:

 <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> 
    :

顺便说一句:当我删除 css-clause 时,链接以正确的字体可见,但默认外观(蓝色下划线)。

有什么想法吗?

罗尔

I'm trying to get a link in a truetype fornt with sIFR3. It's working fine for all ordinary <h1> and <h2> items, but not for links within a <h2>. sIFR is replacing the <a> correctly, but the result is invisible. When I click the area where the text should be, it follows the link. Even with a pointer cursor. But where's my text?

Replacer:

 sIFR.replace(vagroundbtf, {
   selector: '#summary_normalx h2'
   , css: [
      '.sIFR-root { color:#000000; font-weight : bold;}  a {color:#333333; text-decoration: none;} '
       ] 
   ,wmode: 'transparent'
    });  

HTML-snippet:

 <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: when I remove the css-clause, links are visible in the right font but in default look (blue underlined).

Any ideas?

Roel

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谎言月老 2024-08-14 19:06:05

试试这个:

  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

try this:

  sIFR.replace(vagroundbtf, {
   selector: '#summary_normalx h2'
   , css: [
      '.sIFR-root { color:#000000; font-weight : bold;}',
      'a {color:#333333; text-decoration: none;}'
       ] 
   ,wmode: 'transparent'
    });

btw. I do prefer Cufón over sIFR nowadays

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文