我正在使用Foundation 5的Magellan在滚动页面内容时将标题固定在窗口顶部。但是,我没有使用到达点。
通常我的HTML看起来像这样:
<article>
<header data-magellan-expedition="fixed">
<h3>title</h3>
</header>
</article>
但是,当麦哲伦发射时,源变为:
<article>
<header data-magellan-expedition-clone style>
<h3>title</h3>
</header>
<header data-magellan-expedition="fixed" style="position: fixed; top: 0px;">
<h3>title</h3>
</header>
</article>
Foundation允许设置活动类,但由于我没有使用到达点,因此无法利用该功能。
如何在类被触发后才将其设置为<header data-magellan-expedition="fixed" style="position: fixed; top: 0px;">
?
或者,我如何在CSS中具体调用它?
谢谢你的帮助。
在css中这样做的方法似乎是:
header[style="position:fixed;"] { ... }
没想到这么简单!