如何制作如下导航栏,当用户向下滚动时,在某个点之后,导航栏会在左侧滚动并在用户向下滚动时滚动:
http://developer.android.com/design/get-started/ui-overview.html
理想情况下,想知道是否有一个简单的javascript解决方案,或者jquery是首选方法。使用div块可以理解示例。我知道有位置:亲戚;属性,但我不知道如何使用它(javascript?)使它只有在用户向下滚动页面超过某一点后才能使用它。
答案 0 :(得分:1)
您可以通过检查元素进行大量挖掘。我看了一眼导航,它的id
为devdoc-nav
。如果你进入参考资料,他们有一个名为doc.js
的js文件,其中包含以下代码:
// Set up fixed navbar
var prevScrollLeft = 0; // used to compare current position to previous position of horiz scroll
$(window).scroll(function(event) {
if ($('#side-nav').length == 0) return;
if (event.target.nodeName == "DIV") {
// Dump scroll event if the target is a DIV, because that means the event is coming
// from a scrollable div and so there's no need to make adjustments to our layout
return;
}
var scrollTop = $(window).scrollTop();
var headerHeight = $('#header').outerHeight();
var subheaderHeight = $('#nav-x').outerHeight();
var searchResultHeight = $('#searchResults').is(":visible") ?
$('#searchResults').outerHeight() : 0;
var totalHeaderHeight = headerHeight + subheaderHeight + searchResultHeight;
var navBarShouldBeFixed = scrollTop > totalHeaderHeight;
var scrollLeft = $(window).scrollLeft();
// When the sidenav is fixed and user scrolls horizontally, reposition the sidenav to match
if (navBarIsFixed && (scrollLeft != prevScrollLeft)) {
updateSideNavPosition();
prevScrollLeft = scrollLeft;
}
// Don't continue if the header is sufficently far away
// (to avoid intensive resizing that slows scrolling)
if (navBarIsFixed && navBarShouldBeFixed) {
return;
}
if (navBarIsFixed != navBarShouldBeFixed) {
if (navBarShouldBeFixed) {
// make it fixed
var width = $('#devdoc-nav').width();
$('#devdoc-nav')
.addClass('fixed')
.css({'width':width+'px'})
.prependTo('#body-content');
// add neato "back to top" button
$('#devdoc-nav a.totop').css({'display':'block','width':$("#nav").innerWidth()+'px'});
// update the sidenaav position for side scrolling
updateSideNavPosition();
} else {
// make it static again
$('#devdoc-nav')
.removeClass('fixed')
.css({'width':'auto','margin':''})
.prependTo('#side-nav');
$('#devdoc-nav a.totop').hide();
}
navBarIsFixed = navBarShouldBeFixed;
}
resizeNav(250); // pass true in order to delay the scrollbar re-initialization for performance
});
var navBarLeftPos;
if ($('#devdoc-nav').length) {
setNavBarLeftPos();
}
你不一定要了解正在发生的一切,但我想告诉你的基本想法是你所看到的是通过CSS完成的。 javascript只是用于应用CSS在合适的时间。当用户滚过某个点时,该网页会应用一个名为fixed
的类(您可以在default.css
中找到这个)
#devdoc-nav.fixed {
position: fixed;
margin:0;
top: 20px; }
所以,希望你能从这里得到一个想法。有很多方法可以做到这一点但是因为你展示了这个例子,我只是向你展示他们拥有的代码,也许你可以从中得到一些东西。如果您需要帮助,请随时发表评论。
答案 1 :(得分:0)
Twitter Bootstrap有一个“词缀”组件,可以为您执行此操作 - http://rc.getbootstrap.com/javascript.html#affix
如果你想自己写一些相似的东西,你需要:
将元素设置为“position:absolute”(如果将父元素设置为“position:relative”,则通常可以。)
创建一个onscroll事件处理程序,并在其中检查您的元素与视口顶部或底部的距离。
当您希望它保持可见时(例如,一旦用户向下滚动100px),将位置设置为“固定”,否则返回绝对位置。
答案 2 :(得分:0)
Anthony Garand的sticky.js
jquery插件对我来说效果很好。
答案 3 :(得分:0)
如果您不想要其他插件,可以使用jquery window.scrollTop()来执行此操作。