如何使用JQuery自动滚动到一个特定的元素
任务是自动滚动到一个特定的元素。下面是一些方法。
步骤 1:
- 通过
.position().top
属性获取元素的高度。 - 使用
.scrollTop()
方法来设置滚动条的垂直位置,等于特定元素的计算高度。
例子1:这个例子使用了上面讨论的方法。
<!DOCTYPE HTML>
<html>
<head>
<title>
How to scroll automatically to a particular element.
</title>
<style>
#GFG_DOWN {
margin-top: 370px;
}
</style>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<p id="GFG_UP"
style="font-size: 15px;
font-weight: bold;">
</p>
<button onclick="gfg_Run()">
Click Here
<p id="GFG_DOWN"
style="color:green;
font-size: 30px;
font-weight: bold;">
This is element.
</p>
<script>
var el_up = document.getElementById("GFG_UP");
var el_down = document.getElementById("GFG_DOWN");
el_up.innerHTML =
"Click on the button to scroll to the particular element.";
function gfg_Run() {
(window).scrollTop(('#GFG_DOWN').position().top);
}
</script>
</body>
</html>
输出:
- 在点击按钮之前。
- 点击该按钮后。
步骤 2:
- 通过.offset().top属性获取元素的高度。
- 使用.animate()方法对该元素进行动画处理。
例子2:这个例子使用了上面讨论的方法。
<!DOCTYPE HTML>
<html>
<head>
<title>
How to scroll automatically to a particular element.
</title>
<style>
#GFG_DOWN {
margin-top: 400px;
}
</style>
<script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js">
</script>
</head>
<body style="text-align:center;">
<h1 style="color:green;">
GeeksForGeeks
</h1>
<p id="GFG_UP"
style="font-size: 15px; font-weight: bold;">
</p>
<button onclick="gfg_Run()">
Click Here
<p id="GFG_DOWN"
style="color:green;
font-size: 30px;
font-weight: bold;">
This is element.
</p>
<script>
var el_up = document.getElementById("GFG_UP");
var el_down = document.getElementById("GFG_DOWN");
el_up.innerHTML =
"Click on the button to scroll to the particular element.";
function gfg_Run() {
('html, body').animate({
scrollTop:("#GFG_DOWN").offset().top
}, 500);
}
</script>
</body>
</html>
输出:
- 在点击按钮之前。
- 点击该按钮后。
jQuery是一个开源的JavaScript库,它简化了HTML/CSS文档之间的交互,它以其 “少写多做 “的理念而广为人知。
你可以通过学习这个jQuery教程和jQuery实例,从基础开始学习jQuery。