web建站教程
  1. 首页
  2. vuejs
  3. js
  4. 好玩
  5. seo教程
  6. 前端知识
  7. 百度echarts
  8. 更多
    php入门
    nodejs
    mockjs
    reactjs
    mysql
    wordpress
    织梦cms
    帝国cms
    git教程
    IT知识
    模板大全
    休息站

js点击左侧(头部)菜单栏右侧滑动到对应内容

345 ℃
           
var htmlTop = 0;

//获取右侧div高度,小编这里需要+300
var box1 = $('#main-box-1').offset().top + 300;
var box2 = $('#main-box-2').offset().top + 300;
var box3 = $('#main-box-3').offset().top + 300;
var box4 = $('#main-box-4').offset().top + 300;

//点击左边li菜单右边滑动到指定位置
$('.main-l li').click(function() {
  let index = $(this).index();
  if (index == 0) {
    $('html, body').animate({
      scrollTop: 0
    }, 500)
  } else if (index == 1) {
    $('html, body').animate({
      scrollTop: box1
    }, 500)
  } else if (index == 2) {
    $('html, body').animate({
      scrollTop: box2
    }, 500)
  } else if (index == 3) {
    $('html, body').animate({
      scrollTop: box3
    }, 500)
  } else if (index == 4) {
    $('html, body').animate({
      scrollTop: box4
    }, 500)
  }
})
//点击后删除原先li样式新增当前li样式
$(window).scroll(function(e){
  htmlTop = $(window).scrollTop();
  if(htmlTop == 0){
    $(".main-l li").eq(0).addClass("active").siblings().removeClass("active");
  }else if(htmlTop >= box1 && htmlTop < box2){
    $(".main-l li").eq(1).addClass("active").siblings().removeClass("active");
  }else if(htmlTop >= box2 && htmlTop < box3){
    $(".main-l li").eq(2).addClass("active").siblings().removeClass("active");
  }else if(htmlTop >= box3 && htmlTop < box4){
    $(".main-l li").eq(3).addClass("active").siblings().removeClass("active");
  }else if(htmlTop >= box4){
    $(".main-l li").eq(4).addClass("active").siblings().removeClass("active");
  }
});

js用最简单的方法实现2个数组的交叉一对一合并

如何利用js语法将2个数组进行交叉合并

利用js语法把数组根据相同key转换成嵌套数组格式

javascript语法如何把json文件输出到html页面上

js点击按钮从服务器上下载json文件(不是打开文件)

标签: js切换, js滑动

上面是“js点击左侧(头部)菜单栏右侧滑动到对应内容”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://ipkd.cn/webs_11905.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

当前位置: 网站首页 > js
本文共计1182个字,预计阅读时长8分钟
生活小工具,收录了80多款小工具
上一篇: 推荐一款免费开源的屏幕录制软件——OBS Studio
下一篇: 推荐一个高质量的图片素材网站——Unsplash
x 打工人ai神器