我正在尝试在 JavaScript/Jquery 中编写有关使用滚动事件的内容。
这是我开始的地方,但我似乎无法弄清楚如何获得滚动值。
我正在寻找的是在页面上找到当前滚动位置的类/方法。
任何帮助是极大的赞赏。
$(document).ready(function () {
$(window.parent.document).scroll(function () {
var scroll_info = X;//X == the method/class of getting scroll value
if (scroll_info > 40) {
//show
$('#ArrowImage').show(1000);
} else {
//hide
$('#ArrowImage').hide(1000);
}
});
});