克隆后如何将类5添加到Foundation 5 Magellan

时间:2014-07-04 18:17:46

标签: zurb-foundation magellan

我正在利用Foundation 5的Magellan在页面内容滚动时将标题修复到窗口顶部。但是,我没有使用到达点。

通常我的HTML看起来像这样:

<article>
    <header data-magellan-expedition="fixed">
        <h3>title</h3>
    </header>
</article>

但是,当Magellan被解雇时,来源变为:

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

基础允许设置活动类,但由于我没有使用到达点,我无法使用该功能。

如何在类被解雇后将其设置为<header data-magellan-expedition="fixed" style="position: fixed; top: 0px;">

或者,我怎样才能在CSS中专门调用它?

感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

似乎在css中执行此操作的方法是:

header[style="position:fixed;"] { ... }

没有意识到这很容易!