React 实现楼层效果

简介: React 实现楼层效果

实现滑动切换左侧导航栏,点击滑动至指定位置

import React, { useEffect, useRef, useState } from 'react'
import { SideBar } from 'antd-mobile'
import "./css/louce.css"
import { useThrottleFn } from 'ahooks'
const Louce = () => {
    const items = [
        { key: '1', title: '第一项', text: [{ _id: "1", name: "商品1" }, { _id: "11", name: "商品12" }, { _id: "2", name: "商品13" }, { _id: "12", name: "商品14" }, { _id: "13", name: "商品15" }, { _id: "14", name: "商品16" }] },
        { key: '2', title: '第二项', text: [{ _id: "1", name: "商品1" }, { _id: "11", name: "商品12" }, { _id: "2", name: "商品13" }, { _id: "12", name: "商品14" }, { _id: "13", name: "商品15" }, { _id: "14", name: "商品16" }] },
        { key: '3', title: '第三项', text: [{ _id: "1", name: "商品1" }, { _id: "11", name: "商品12" }, { _id: "2", name: "商品13" }, { _id: "12", name: "商品14" }, { _id: "13", name: "商品15" }, { _id: "14", name: "商品16" }] },
        { key: '4', title: '第四项', text: [{ _id: "1", name: "商品1" }, { _id: "11", name: "商品12" }, { _id: "2", name: "商品13" }, { _id: "12", name: "商品14" }, { _id: "13", name: "商品15" }, { _id: "14", name: "商品16" }] },
    ]
    const [activeKey, setActiveKey] = useState('1')
    const { run: handleScroll } = useThrottleFn(
        () => {
            let currentKey = items[0].key
            for (const item of items) {
                const element = document.getElementById(`anchor-${item.key}`)
                if (!element) continue
                const rect = element.getBoundingClientRect()
                if (rect.top <= 0) {
                    currentKey = item.key
                } else {
                    break
                }
            }
            setActiveKey(currentKey)
        },
        {
            leading: true,
            trailing: true,
            wait: 100,
        }
    )
    const mainElementRef = useRef()
    useEffect(() => {
        const mainElement = mainElementRef.current
        if (!mainElement) return
        mainElement.addEventListener('scroll', handleScroll)
        return () => {
            mainElement.removeEventListener('scroll', handleScroll)
        }
    }, [])
    return (
        <div>
            <div className="container">
                <div className="side">
                    <SideBar
                        activeKey={activeKey}
                        onChange={key => {
                            document.getElementById(`anchor-${key}`)?.scrollIntoView()
                        }}
                    >
                        {items.map(item => (
                            <SideBar.Item key={item.key} title={item.title} />
                        ))}
                    </SideBar>
                </div>
                <div className="main" ref={mainElementRef}>
                    {items.map(item => (
                        <div key={item.key} className='mitem'>
                            <h2 id={`anchor-${item.key}`}>{item.title}</h2>
                            <div className='items'>
                                {item.text.map(itm => {
                                    return (
                                        <div>
                                            {itm.name}
                                        </div>
                                    )
                                })}
                            </div>
                        </div>
                    ))}
                </div>
            </div>
        </div>
    );
}
export default Louce;

css样式

.container {
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
  }
  .side {
    flex: none;
  }
  .main {
    flex: auto;
    padding: 0 24px 32px;
    overflow-y: scroll;
  }
  h2 {
    margin: 0;
    padding: 12px 0;
  }
  .mitem{
    height: 100vh;
  }
  .items{
    display: flex;
    flex-wrap: wrap;
  }
  .items>div{
    width: 100px;
    line-height: 50px;
  }

 

相关文章
|
前端开发 JavaScript
【笔记】react 图片预览组件—— react-zmage(放大、旋转)
react 图片预览组件—— react-zmage(放大、旋转)
1130 0
|
3月前
|
前端开发 索引
基于React的简单轮播图组件
基于React的简单轮播图组件
|
4月前
|
前端开发
【掰开揉碎】React Router——React应用导航(二)
【掰开揉碎】React Router——React应用导航(二)
|
4月前
|
资源调度 前端开发 网络架构
【掰开揉碎】React Router——React应用导航(一)
【掰开揉碎】React Router——React应用导航(一)
|
4月前
|
前端开发
第三十一章 React中路由组件和一般组件
第三十一章 React中路由组件和一般组件
|
10月前
|
前端开发 定位技术
React实现地图搜索
React实现地图搜索
105 0
|
10月前
|
前端开发
react轮播图
react轮播图
|
前端开发
React 购物车实现抛物线效果
React 购物车实现抛物线效果
91 0
|
前端开发
React中路由切换动画
React中路由切换动画
162 0
|
前端开发
react实现步进器
react实现步进器