1.0.12 • Published 2 years ago

anchor-scroll-menu v1.0.12

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

🏠 Homepage

Demo & Document

Install

$ npm install anchor-scroll-menu

Snapshot

scroll

Usage

import React from 'react';
import { AnchorMenu } from 'anchor-scroll-menu';

const commonStyle = { height: 300 };
const id = +new Date();
const menuList = [
  {
    name: 'antiquewhite',
    key: `antiquewhite${id}`,
    content: <div style={{ ...commonStyle, backgroundColor: 'antiquewhite' }} />,
  },
  {
    name: 'skyblue',
    key: `skyblue${id}`,
    content: <div style={{ ...commonStyle, backgroundColor: 'skyblue' }} />,
  },
  {
    name: 'pink',
    key: `pink${id}`,
    content: <div style={{ ...commonStyle, backgroundColor: 'pink' }} />,
  },
  {
    name: 'orange',
    key: `orange${id}`,
    content: <div style={{ ...commonStyle, backgroundColor: 'orange' }} />,
  },
  {
    name: 'lightcoral',
    key: `lightcoral${id}`,
    content: <div style={{ ...commonStyle, backgroundColor: 'lightcoral' }} />,
  },
];

export default () => (
  <div style={{ width: '100%', height: 600 }}>
    <AnchorMenu menuList={menuList} />
  </div>
);

API

NameDescriptionTypeDefault
menuList菜单数据数组,key 请确保是唯一的,由字母数字组成,且必须以字母开头{ name: string; content: ReactNode; key: string; }[][]
menuStylemenu 区域的 styleCSSProperties--
placementmenu 区域的位置"top" | "right" | "bottom" | "left"left
scrollDirection滚动方向"vertical" | "horizontal"vertical
region手动滚动时,滚动内容跟父元素顶部距离的区间, 滚动内容一到达该区间, 对应菜单按钮高亮。如果滚动过快时,菜单没有高亮,不妨将区间增大。[number, number][-20, 20]
easing缓动动画函数"linear" | "easeInQuad" | "easeOutQuad" | "easeInOutQuad" | "easeInCubic" | "easeOutCubic" | "easeInOutCubic"easeInOutCubic
duration用多少 ms 完成滚动动画,单位 msnumber300
hideTitle隐藏内容块的 titlebooleanfalse
activeKey当前激活的 menu 的 keystring--
onMenuClick点击菜单的回调函数(key: string, index: number, activeKey: string) => void--
onReach点击菜单滚动到达目的地后的回调函数(key: string, index: number) => void--

👔 Author

Jay-Ohhh

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2022 Jay-Ohhh.

This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator

1.0.9

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.12

2 years ago

1.0.8

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago