如何添加“选定的” siFR a:link 的样式?

发布于 2024-08-03 06:09:34 字数 341 浏览 1 评论 0原文

我有一个由 SIFR 提供支持的菜单,如下所示:

<h2><a href="images/logo.jpg">IDENTIIES</a></h2><br>

我设置了不同的a:link 样式的状态,我希望此链接在被单击时保持另一种颜色(直到单击另一个链接)。

我认为这与 javascript 有关,但我无法使其工作。

有人可以帮忙吗?

I got a menu powered by SIFR like this:

<h2><a href="images/logo.jpg">IDENTIIES</a></h2><br>

I've setup the different states of the a:link style and I'd like this link to stay in another color when it has been clicked on (until another link is clicked on).

I think this has something to do with javascript, but I can't make this work.

Can someone please help?

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

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

发布评论

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

评论(2

忆梦 2024-08-10 06:09:34

Flash 不支持此功能。 JavaScript 解决方法也许是可能的,但充其量只是解决方法。我建议您不要在这种情况下使用 sIFR。

Flash does not support this. JavaScript workarounds might be possible, but are workarounds at best. I advise you do not use sIFR for this scenario.

浮生面具三千个 2024-08-10 06:09:34

如果将选定的类添加到已选择的链接中,您应该具有不同的选择器。一种用于未选择,一种用于选择。

<h2 class="selected"><a href="images/logo.jpg">IDENTIIES</a></h2>
<h2><a href="images/logo.jpg">NOT SELECTED</a></h2>

然后使用这些选择器进行不同样式的 sIFR 替换。可能是这样的:

sIFR.replace(YourFont, { 
  selector: 'h2 a',
  css: [ '.sIFR-root {color: #FF0000;}' ]
});

sIFR.replace(YourFont, { 
  selector: 'h2 a.selected',
  css: [ '.sIFR-root {color: #FFFF00;}' ]
});

If you add a selected class to the link that has been selected you should have to different selectors. One for not selected and one for selected.

<h2 class="selected"><a href="images/logo.jpg">IDENTIIES</a></h2>
<h2><a href="images/logo.jpg">NOT SELECTED</a></h2>

Then use these selectors for sIFR replacements with a different style. Could be something like this:

sIFR.replace(YourFont, { 
  selector: 'h2 a',
  css: [ '.sIFR-root {color: #FF0000;}' ]
});

sIFR.replace(YourFont, { 
  selector: 'h2 a.selected',
  css: [ '.sIFR-root {color: #FFFF00;}' ]
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文