我有一个代码可以使用锚链接平滑滚动,但是我想要的是在窗口高度上建立一个固定链接,并在页面上可用的每个部分之间跳转。我的链接显示滚动以了解更多信息。用户单击时,必须转到每个部分。到目前为止,我的代码是:
$("#over_scroll_text a").on('click', function(event) {
// Make sure this.hash has a value before overriding default behavior
//if (this.hash == "") {
// Prevent default anchor click behavior
event.preventDefault();
// Store hash
//var hash = this.hash;
// Using jQuery's animate() method to add smooth page scroll
// The optional number (800) specifies the number of milliseconds it takes to scroll to the specified area
$('html, body').animate({
//scrollTop: $(hash).offset().top
scrollTop: $(document).height() - $(window).height()
//}, 800//, function(){
// Add hash (#) to URL when done scrolling (default click behavior)
//window.location.hash = hash;
});
//} // End if
});
不知道我可以从这里做什么。有帮助吗?
答案 0 :(得分:0)
第9、16和19行不应该被注释掉