有时我已经看到了这一点,但我不知道如何实现它或如何搜索它。这就是为什么我想解释它的作用:
假设我们有一个图像,一个箭头,它指向下方,当你点击它时,页面会向下滚动。当我现在向下滚动并到达指定点时,箭头指向上方并将我带回页面顶部。
感谢您的任何回复=)
编辑:我找到了一个例子。查看底部的小箭头以及到达页面末尾时它的变化情况。rorymcilroy.com
有时我已经看到了这一点,但我不知道如何实现它或如何搜索它。这就是为什么我想解释它的作用:
假设我们有一个图像,一个箭头,它指向下方,当你点击它时,页面会向下滚动。当我现在向下滚动并到达指定点时,箭头指向上方并将我带回页面顶部。
感谢您的任何回复=)
编辑:我找到了一个例子。查看底部的小箭头以及到达页面末尾时它的变化情况。rorymcilroy.com
你可以使用jQuery ScrollTo 插件
这是一个演示
这是您想要的 jsfiddle 演示(使用 scrollTo 插件)
的JavaScript:
$('#upDownArrow').click(function() {
if($(this).hasClass("arrowUp")) {
$.scrollTo( '#top', 500); // scroll to top
$(this).removeClass("arrowUp");
$(this).addClass("arrowDown");
} else {
$.scrollTo( '#bottom', 500); // scroll to bottom
$(this).removeClass("arrowDown");
$(this).addClass("arrowUp");
}
});
的HTML:
<div id="#top"></div>
<div id="upDownArrow" class="arrowDown"><div class="arrow"></div></div>
<!-- add your content here -->
<div id="#bottom"></div>
的CSS:
#upDownArrow {
position: fixed;
top: 50px;
right: 50px;
width: 30px;
height: 30px;
background: #33B;
}
#upDownArrow:hover {
background: #99F;
cursor: pointer;
}
#upDownArrow.arrowDown:hover .arrow {
border-top-color: #99F;
}
#upDownArrow.arrowUp:hover .arrow {
border-bottom-color: #99F;
}
#upDownArrow.arrowUp .arrow {
position: absolute;
border: 15px solid transparent;
border-bottom: 15px solid #33B;
top: -30px;
}
#upDownArrow.arrowDown .arrow {
position: absolute;
border: 15px solid transparent;
border-top: 15px solid #33B;
bottom: -30px;
}
如果你想要一个上一个/下一个按钮,你可能必须创建一个项目/id/位置列表(查看 scrollTo 插件的文档以查看可以使用哪些参数),应该像这样逐步完成:
var steps = ["top","part1","part2","bottom"];
然后创建 2 个按钮,一个用于向上,一个用于向下,然后使用:
var currentPosition = 0;
$("#buttonUp").click(function() {
if(currentPosition == 0) {
currentPosition = steps.length-1;
} else {
currentPosition--;
}
$.scrollTo('#'+steps[currentPosition],500);
});
$("#buttonDown").click(function() {
if(currentPosition == steps.length-1) {
currentPosition = 0;
} else {
currentPosition++;
}
$.scrollTo('#'+steps[currentPosition],500);
});
这是一个带有向上和向下按钮的演示:
这里是另一个演示,您的“按钮更改”滚动;)
这是我前一阵子写的。我想这就是你要找的。
$('a').on('click', function (event) {
event.preventDefault();//stop the browser from jumping to the anchor
var href = $(this).attr('href'), // get id of target div from link e.g #one #two
oset = $(href).offset().top; // get the offset top of the div
$('html, body').stop().animate({
scrollTop : oset // animate the scrollTop property to the offset of target div
}, 1000, function () {
location.hash = href; // change the hash to target div
});
});
如果我理解正确,这个问题和你的一样。