Bootstrap词缀跳转到文本

时间:2017-06-06 13:43:47

标签: javascript css angularjs twitter-bootstrap

我知道这个问题多次发布在堆栈上, 我跟着这个小提琴http://jsfiddle.net/namuol/Uaa3U/ 我有一个问题,词缀使导航跳转到文本。
我的指令(angular)中有以下代码:

changeAffix() {
        var navBar: any = $(this.$element[0].children[0]); // because of affix function $
        navBar.affix({
            offset: {
                top: navBar.offset().top
            }
        });
    }

this.$element[0].children[0] 这个。$ element [0] .children [0]
的CSS:

nav {
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    -moz-box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    -box-shadow: 0 2px 5px 0 rgba(0,0,0,.25);
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                              supported by Chrome and Opera */
}

.navbar-static-action-bar {
    display: table;
    //margin-bottom: 20px;
    background-color: @action-primary;
    position: relative;
    z-index: 800;
}

.affix {
    top: 0;
    width: 100%;
    position: fixed;
}

这是一个关于“nav”如何使用词缀enter image description here

跳转的小gif

0 个答案:

没有答案