New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

anchor-scroll-menu

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

anchor-scroll-menu

Anchor menu with scrolling contents for React

latest
Source
npmnpm
Version
1.0.12
Version published
Weekly downloads
29
3.57%
Maintainers
1
Weekly downloads
 
Created
Source

anchor-scroll-menu 👋

Anchor menu with scrolling contents for React

Version downloads License: MIT

🏠 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

Keywords

anchor

FAQs

Package last updated on 11 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts