首页 > 编程知识 正文

Div里面的元素滚动到可视区,js页面滚动

时间:2023-05-03 13:11:42 阅读:36270 作者:4557

如果滚动页面也是DOM未解决的问题。 为了解决这个问题,浏览器实现了以下方法,以便开发人员可以更好地控制页面滚动。 在各种独特的方法中,HTML5选择scrollIntoView ()作为标准方法。 可以在所有HTML元素中调用scrollIntoView (),也可以通过滚动浏览器窗口或容器元素在窗口中显示调用元素。 如果将true作为参数传递给方法,或者不传递参数,请滚动窗口,使调动元素的顶部和窗口的顶部尽可能平坦。 如果传递false作为参数,则调用元素将尽可能全部显示在视口中。 如果可能,调用元素的底部将与视口顶部相同。 但是,顶部并不一定齐平。

htmldivh2scrollintoview/H2 buttonid=' roll1' scrollintoview (false )/button buttonid=' roll2' scrolllintoview (true ) ) div divid=' roll _ top ' scrollintoview (ture )元素的上边框与窗口顶部相同高度spanid='bottom'scrollintoview )元素的下边框为窗口顶部} #roll_top { height: 900px; 背景色: green; color: #FFF; font-size: 50px; position: relative; } #bottom { position: absolute; 显示: block; left: 0; bottom: 0; } js

window.onload=function ((document.query selector ) ' #roll1' ).onclick=function ) {document.queryselector} () document.queryselector('#roll2' ).onclick=function ) { document.query selector (' # roll _ top ' ) }.scrollick }

二、htmldivh2scroll/H2 divid=' nav ' divclass=' f1 ' floor1/divdivclass=' F2 ' floor2/divdivclass=' F3 ' floor3) p div class='main' div id='f1 '测试1/div div id='f2 '测试2/div div id='f3 '测试

css .main div { height: 1000px; width: 300px; margin: 20px; 背景色: # c0c0c 0; } #nav { positio

n: fixed; width: 100px; height: 200px; top: 40%; right: 10px; } #nav div { cursor: pointer; text-align: center; } js $(function () { $(window).scroll(function () {//为页面添加页面滚动监听事件 var wst = $(window).scrollTop(); //滚动条距离顶端值 for (var i = 1; i < 6; i++) { //加循环 if ($("#f" + i).offset().top <= wst + 10) { //判断滚动条位置 $('#nav div').css("background-color", "white"); $(".f" + i).css("background-color", "red"); } } }); $('#nav div').click(function () { $('html,body').animate({scrollTop: $("#" + this.className).offset().top}, 500);// $("#" + this.className)[0].scrollIntoView(true);//h5 scrollIntoView() }); });

全部代码

 

<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>h5之scrollIntoView控制页面元素滚动</title> <style> /*scrollIntoView*/ #myDiv { height: 900px; background-color: gray; } #roll_top { height: 900px; background-color: green; color: #FFF; font-size: 50px; position: relative; } #bottom { position: absolute; display: block; left: 0; bottom: 0; } /*scroll*/ .main div { height: 1000px; width: 300px; margin: 20px; background-color: #C0C0C0; } #nav { position: fixed; width: 100px; height: 200px; top: 40%; right: 10px; } #nav div { cursor: pointer; text-align: center; } </style></head><body><div> <h2>scrollIntoView</h2> <button id="roll1">scrollIntoView(false)</button> <button id="roll2">scrollIntoView(true)</button> <div> <div id="myDiv"></div> <div id="roll_top"> scrollIntoView(ture)元素上边框与视窗顶部齐平 <span id="bottom">scrollIntoView(false)元素下边框与视窗底部齐平</span> </div> </div></div><div> <h2>scroll</h2> <div id="nav"> <div class="f1">floor1</div> <div class="f2">floor2</div> <div class="f3">floor3</div> <div class="f4">floor4</div> <div class="f5">floor5</div> </div> <p> 页面结构 </p> <div class="main"> <div id="f1">测试1</div> <div id="f2">测试2</div> <div id="f3">测试3</div> <div id="f4">测试4</div> <div id="f5">测试5</div> </div></div><script> window.onload = function () { /* 如果滚动页面也是DOM没有解决的一个问题。为了解决这个问题,浏览器实现了一下方法,以方便开发人员如何更好的控制页面的滚动。 在各种专有方法中,HTML5选择了scrollIntoView()作为标准方法。scrollIntoView()可以在所有的HTML元素上调用, 通过滚动浏览器窗口或某个容器元素,调用元素就可以出现在视窗中。如果给该方法传入true作为参数,或者不传入任何参数, 那么窗口滚动之后会让调动元素顶部和视窗顶部尽可能齐平。如果传入false作为参数,调用元素会尽可能全部出现在视口中(可能的话,调用元素的底部会与视口的顶部齐平。)不过顶部不一定齐平. */ document.querySelector("#roll1").onclick = function () { document.querySelector("#roll_top").scrollIntoView(false); }; document.querySelector("#roll2").onclick = function () { document.querySelector("#roll_top").scrollIntoView(true); }; }</script><script src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script><script> $(function () { $(window).scroll(function () {//为页面添加页面滚动监听事件 var wst = $(window).scrollTop(); //滚动条距离顶端值 for (var i = 1; i < 6; i++) { //加循环 if ($("#f" + i).offset().top <= wst + 10) { //判断滚动条位置 $('#nav div').css("background-color", "white"); $(".f" + i).css("background-color", "red"); } } }); $('#nav div').click(function () { $('html,body').animate({scrollTop: $("#" + this.className).offset().top}, 500);// $("#" + this.className)[0].scrollIntoView(true);//h5 scrollIntoView() }); });</script></body></html>

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。