我知道这个问题多次发布在堆栈上,
我跟着这个小提琴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
}
});
}
这个。$ 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;
}
跳转的小gif