文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

react如何实现导航栏二级联动

2023-06-29 10:47

关注

这篇文章给大家分享的是有关react如何实现导航栏二级联动的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

具体内容如下

效果图

react如何实现导航栏二级联动

js代码

import { Component } from "react";import './scroll.less' class Scroll extends Component {    constructor(...args) {        super(...args)        this.state = {            list: [                { id: 1, title: '列表1' },                { id: 2, title: '列表2' },                { id: 3, title: '列表3' },                { id: 4, title: '列表4' },                { id: 5, title: '列表5' },                { id: 6, title: '列表6' },                { id: 7, title: '列表7' },                { id: 8, title: '列表8' },                { id: 9, title: '列表9' },                { id: 10, title: '列表10' },                { id: 11, title: '列表11' },                { id: 12, title: '列表12' },                { id: 13, title: '列表13' },                { id: 14, title: '列表14' },                { id: 15, title: '列表15' },                { id: 16, title: '列表16' },                { id: 17, title: '列表17' },            ],            LeftList: [                { id: 1, title: '列表1', height: 800 },                { id: 2, title: '列表2', height: 600 },                { id: 3, title: '列表3', height: 500 },                { id: 4, title: '列表4', height: 900 },                { id: 5, title: '列表5', height: 450 },                { id: 6, title: '列表6', height: 300 },                { id: 7, title: '列表7', height: 900 },                { id: 8, title: '列表8', height: 1010 },                { id: 9, title: '列表9', height: 300 },                { id: 10, title: '列表10', height: 600 },                { id: 11, title: '列表11', height: 400 },                { id: 12, title: '列表12', height: 760 },                { id: 13, title: '列表13', height: 580 },                { id: 14, title: '列表14', height: 630 },                { id: 15, title: '列表15', height: 540 },                { id: 16, title: '列表16', height: 983 },                { id: 17, title: '列表17', height: 610 },            ],            curr: 0,//存储下标        }        // 默认添加一个 因为第一个的scrollTop值是0        this.LeftHeight = [0]        // 滚动的开关        this.Swich = true    }    // 渲染完成获取每一个列表距离顶部的距离    componentDidMount() {        // 定义为0 每次就可以循环加起来就是盒子距离顶部的距离        this.Height = 0        // 循环获取每一个的高        for (var i = 0; i < this.state.LeftList.length - 1; i++) {            this.Height += this.state.LeftList[i].height            // 将它添加到数组中            this.LeftHeight.push(this.Height)        }    }    //   点击左侧列表 点击获取下标    fnTab(Ind) {        // 点击的时候让右边的滚动事件为false        this.Swich = false        // 存储下标        this.setState({            curr: Ind        })        // 根据下标取出数组中对应下标的scrollTop值  就让右边的scrollTop为数组中取出的值        this.refs['rightItem'].scrollTop = this.LeftHeight[Ind];         // this.refs.scrollLeft.scrollTop = this.state.curr - 4 * 58.89    }    FnScroll() {        // 监听滚动        this.scrollTop = this.refs['rightItem'].scrollTop        // 这边用开关判断是否执行        if (this.Swich) {            // 存放下标            let num = 0            // 循环取出数组中的数值            for (var i = 0; i < this.LeftHeight.length - 1; i++) {                if (this.scrollTop >= this.LeftHeight[i]) {                    num = i                }            }            // 存储下标            this.setState({                curr: num            })        }        // 判断滚动的值和数组中的值相等 开关为true        if (this.scrollTop == this.LeftHeight[this.state.curr]) {            setTimeout(() => {                this.Swich = true;            });        }    }    render() {        return (            <div className='box'>                <div className='scroll'>                    <div className='scroll-right' ref='scrollLeft'>                        {this.state.list.map((item, index) => <div className='right-item' className={this.state.curr === index ? "active" : "right-item"} key={item.id} onClick={this.fnTab.bind(this, index)} >{item.title}</div>)}                    </div>                    <div className='scroll-left' ref='rightItem' onScroll={this.FnScroll.bind(this)}>                        {this.state.LeftList.map((item) => <div className='left-item' key={item.id} style={{ height: item.height }}><div className='item-title'>{item.title}</div></div>)}                    </div>                 </div>            </div>        )    }}export default Scroll

less代码

* {    margin: 0;    padding: 0;} .box {    width: 100vw;    height: 100vh;    background: red;     .scroll {        width: 100vw;        height: 100vh;        display: flex;         // 右边列表        .scroll-right {            width: 25vw;            background: aqua;            font-size: 28px;            height: 100vh;            overflow-y: auto;             .right-item {                width: 25vw;                height: 80px;                text-align: center;                line-height: 80px;                border-bottom: 1px solid #ccc;            }             .active {                height: 80px;                text-align: center;                line-height: 80px;                background: #0f0;            }        }         // 左边内容        .scroll-left {            width: 75vw;            height: 100vh;            overflow-y: auto;            //滚动的更加丝滑            scroll-behavior: smooth;             .left-item {                width: 75vw;                font-size: 30px;                text-align: center;                  .item-title {                    height: 30px;                    background: #ccc;                }            }        }    }}

感谢各位的阅读!关于“react如何实现导航栏二级联动”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯