当前位置:   article > 正文

前端学习:dom-js实现导航栏,回到顶部,触底加载更多,吸顶效果,折合表_前端回到顶部

前端回到顶部

1.导航栏

css样式:

z-index  只有在有定位的情况下才有效

transition: all 500ms linear;  动画过渡属性CSS3实现过渡效果 (transition)_眯着眼睛看世界~的博客-CSDN博客CSS3中新增的transform属性,可以实现元素在变换过程中的过渡效果,实现了基本的动画。transition功能:实现元素不同状态之间的平滑过渡。此前:元素->hover状态 直接切换,从开始状态到结束状态,瞬间完成,中间过程几乎无法查看。格式:transition:过渡的属性 完成时间(s) 运动曲线 延迟时间数值型的属性才可以设置过渡。width,height,color,font-sizetransition-property 过渡属性:发生变化时,想要有过渡效果的属性https://blog.csdn.net/qq_41098956/article/details/109749223?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522165735022416781432960549%2522%252C%2522scm%2522%253A%252220140713.130102334..%2522%257D&request_id=165735022416781432960549&biz_id=0&utm_medium=distribute.pc_search_result.none-task-blog-2~all~baidu_landing_v2~default-1-109749223-null-null.142%5Ev32%5Econtrol,185%5Ev2%5Econtrol&utm_term=transition%3A%20all%20500ms%20linear%3B&spm=1018.2226.3001.4187li:first-child  伪类选择器的使用

  1. <style>
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. list-style: none;
  6. text-decoration: none;
  7. }
  8. nav {
  9. width: 100%;
  10. height: 50px;
  11. line-height: 50px;
  12. background: rgb(18, 18, 91);
  13. }
  14. .box {
  15. width: 60%;
  16. margin: auto;
  17. }
  18. a {
  19. color: white;
  20. position: relative;
  21. /* z-index 只有在有定位的情况下才有效 */
  22. z-index: 2;
  23. }
  24. li {
  25. float: left;
  26. padding: 0 20px;
  27. box-sizing: border-box;
  28. }
  29. li:first-child {
  30. background: red;
  31. }
  32. li:last-child {
  33. background: red;
  34. width: 70px;
  35. height: 50px;
  36. position: absolute;
  37. top: 0;
  38. right: 0;
  39. transition: all 500ms linear;
  40. }
  41. ul {
  42. height: 50px;
  43. position: relative;
  44. }
  45. </style>
  1. <nav>
  2. <div class="box">
  3. <ul>
  4. <li>
  5. <a href="#">首页</a>
  6. </li>
  7. <li>
  8. <a href="#">军事</a>
  9. </li>
  10. <li>
  11. <a href="#">娱乐</a>
  12. </li>
  13. <li>
  14. <a href="#">绝地求生</a>
  15. </li>
  16. <li>
  17. <a href="#">美女</a>
  18. </li>
  19. <li class="move"></li>
  20. </ul>
  21. </div>
  22. </nav>

js
1. var lis = document.querySelectorAll("li:not(.move)");//挑选所有的li标签除了带有class为move的li

2.offsetLeft为 只读属性

3.clientWidth和offsetWidth都可以获取当前对象的宽  而且都包含padding,可将盒子设为怪异盒子使用

4.设中间变量来记录当前高亮部分

5.通过.style.width获取的宽  只能获取其行内样式中的值 不能获取CSS样式中配置的值,可通过  

        参数1: 获取的元素

        参数2: 伪类

        getComputedStyle(main).getPropertyValue("height");

        getComputedStyle(main).height;   来获取

获取伪元素中的样式值

        getComputedStyle(main,"after").width

  1. <script>
  2. var lis = document.querySelectorAll("li:not(.move)");//挑选所有的li标签除了带有class为move的li
  3. var move = document.querySelector(".move");
  4. var previous = lis[0];
  5. lis.forEach(function (el) {
  6. el.onmouseenter = function () {
  7. // console.log(this.offsetLeft + "px");
  8. // offsetLeft为 只读属性
  9. move.style.left = this.offsetLeft + "px";//注意赋值时要加单位
  10. // clientWidth和offsetWidth都可以使用 而且都包含padding,可将盒子设为怪异盒子使用
  11. // move.style.width=this.offsetWidth+"px";
  12. move.style.width = this.clientWidth + "px";
  13. }
  14. el.onmouseleave = function (el) {
  15. move.style.left=previous.offsetLeft+"px";
  16. move.style.width=previous.clientWidth+"px";
  17. }
  18. el.onclick=function(){
  19. this.style.background="red";
  20. previous.style.background="transparent";
  21. previous=this;
  22. }
  23. })
  24. </script>

2.回到顶部

定时器设置的每执行一次延迟的时间为16.67ms

        60fps:1s填充60次,16.67ms填充一次,更符合浏览效果

默认 给根元素对象 document.docmentElement.scrollTop 是有值的  而document.body.scrollTop没有值        除非body有滚动条(body内容溢出body,overflow-Y:auto;),document.body.scrollTop才有值.

        中间要移除定时器,要给定时器设置名字,通过对定时器的名置空,利用(!null)来控制定时器的继续执行

  1. <style>
  2. body {
  3. height: 2000px;
  4. }
  5. button {
  6. position: fixed;
  7. bottom: 20px;
  8. right: 30px;
  9. width: 100px;
  10. line-height: 100px;
  11. }
  12. </style>
  13. <body>
  14. <button id="btn">回到顶部</button>
  15. <script>
  16. var timer = null;
  17. btn.onclick = function () {
  18. if (!timer) {
  19. timer = setInterval(() => {
  20. document.documentElement.scrollTop -= 20;
  21. // console.log(document.body.scrollTop);//0
  22. if(document.documentElement.scrollTop<=0){
  23. document.documentElement.scrollTop=0;
  24. clearInterval(timer);
  25. timer=null;
  26. }
  27. }, 16.67);//60fps:1s填充60次,16.67ms填充一次,更符合浏览效果
  28. }
  29. }
  30. </script>
  31. </body>

3.触底加载更多

当    滚动距离 >= 整个页面的高度  - 可视区域的高度  (触底) 时,往页面中追加元素

window.scrollBy(0,100);        参数代表横轴和纵轴每次滚动的增量

window.scrollTo(0,0);              参数表示滚动条最后停留的位置

 // behavior 行为  smooth 圆滑

            window.scrollTo({

                top: 0,

                left:0,

                behavior: "smooth"

            });

        }

  1. btn.onclick=function(){
  2. window.scrollTo({
  3. top:0,
  4. left:0,
  5. behavior:"smooth"
  6. });
  7. }
  8. window.onscroll=function(){
  9. if(document.documentElement.scrollTop>=document.documentElement.scrollHeight-document.documentElement.clientHeight-10){
  10. var div=document.createElement("div");
  11. div.innerText=Math.random();
  12. document.body.appendChild(div);
  13. }
  14. }

4.吸顶效果

当滚动条的滚动距离大于等于导航栏距离顶部的偏移量时,给导航栏添加固定定位会脱离文档流会导致导航栏下面的内容直接上移,可以在事件里给内容区添加上部外边距,事件结束后再移除解决,也可以在内容区添加元素将大小设为导航栏的高度,事件开始时将其显示,事件结束后隐藏。

浏览器刷新按钮

 window.onbeforeunload = function () {

            document.documentElement.scrollTop = 0;  

        }

按键 刷新 回到顶部

document.documentElement.onkeyup = function () {

            console.log(event);

            // F5   刷新  ctrl + r 强制刷新  会清缓存

            if(event.keyCode === 116 || (event.ctrlKey  && event.keyCode === 82)){

                console.log(111111111)

                document.documentElement.scrollTop = 0;  

            }

           

        }

  1. *{
  2. margin: 0;
  3. }
  4. header{
  5. height: 300px;
  6. background: red;
  7. }
  8. nav{
  9. width: 100%;
  10. height: 50px;
  11. background: blue;
  12. }
  13. main{
  14. height: 1500px;
  15. background: green;
  16. }
  17. .fixed {
  18. position: fixed;
  19. top: 0;
  20. left: 0;
  21. }
  22. div{
  23. display: none;
  24. height: 50px;
  25. }
  26. <header>头部内容</header>
  27. <nav>导航条</nav>
  28. <div></div>
  29. <main>
  30. 内容跟
  31. </main>
  32. <script>
  33. // 1.获取nav 距离顶部的位置
  34. var nav = document.querySelector('nav');
  35. // 不定义top 变量名 因为window 属性中包含该值
  36. var nav_top = nav.offsetTop;
  37. // console.log(top);
  38. // console.log(window);
  39. window.onscroll = function () {
  40. // 当前滚动值
  41. var s_top = document.documentElement.scrollTop;
  42. if(s_top >= nav_top){
  43. nav.classList.add("fixed");
  44. // 可以规避 固定定位 脱离文档流 导致main的内容被直接上移
  45. // document.querySelector("main").style.marginTop = "50px";
  46. document.querySelector('div').style.display = "block";
  47. }
  48. else{
  49. nav.classList.remove("fixed");
  50. // document.querySelector("main").style.marginTop = "0";
  51. document.querySelector('div').style.display = "none";
  52. }
  53. }

5.折合表

先将折合表设置较小的高度,让其内容超出部分隐藏,当点击事件发生时,将其高度设为可滚动的高度(scrollHeight),事件结束后再移除。        利用中间变量来控制事件发生时表的折合状态。

 btns[i].isOpen = false;                   this.isOpen = !this.isOpen;

  1. <style>
  2. .wrap {
  3. height: 50px;
  4. line-height: 50px;
  5. background: gray;
  6. margin-bottom: 10px;
  7. transition: all 100ms linear;
  8. overflow: hidden;
  9. }
  10. .content {
  11. background: pink;
  12. }
  13. </style>
  14. <body>
  15. <div class="box">
  16. <div class="wrap">
  17. <span>html</span>
  18. <button>展开</button>
  19. <div class="content">
  20. <h1>111</h1>
  21. <h1>222</h1>
  22. </div>
  23. </div>
  24. <div class="wrap">
  25. <span>html</span>
  26. <button>展开</button>
  27. <div class="content">
  28. <h1>111</h1>
  29. <h1>222</h1>
  30. </div>
  31. </div>
  32. <div class="wrap">
  33. <span>html</span>
  34. <button>展开</button>
  35. <div class="content">
  36. <h1>111</h1>
  37. <h1>222</h1>
  38. </div>
  39. </div>
  40. </div>
  41. <script>
  42. var btns = document.querySelectorAll("button");
  43. var wraps = document.querySelectorAll(".wrap");
  44. for (let i = 0; i < btns.length; i++) {
  45. btns[i].isOpen = false;
  46. btns[i].onclick = function () {
  47. this.isOpen = !this.isOpen;
  48. if (this.isOpen) {
  49. wraps[i].style.height = wraps[i].scrollHeight + "px";
  50. }
  51. else {
  52. wraps[i].style.height = "50px";
  53. }
  54. }
  55. }
  56. </script>
  57. </body>

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/69362
推荐阅读
相关标签
  

闽ICP备14008679号