npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@zzzz-/select

v0.0.1

Published

选择组件

Downloads

5

Readme

@zzzz-/select

文档地址

执行命令

    // 文档
    npm run storybook

    // 运行
    npm run start

    // 打包
    npm run clear
    npm run build:umd
    npm run build:es
    npm run build:tsc-types
    npm run build:lib // 合并上面4条命令

    // 发布命令
    npm run publish:patch

公式

  • 滚动滑块高度(宽度)计算公式: 2 * 容器可视高度 / 容器滚动高度

    • 换算方式: 容器可视高度 / 容器滚动高度 = x / 滚动块容器高度
    • 基本上 容器可视高度 === 滚动块容器高度
    • x 为滑块高度
    • 滑块比例: 容器可视高度 / 容器滚动高度
  • 滚动距离(scrollTop/scrollLeft)换算公式: 滚动距离 * 容器可视高度 / 容器滚动高度

    • 换算方式: 滚动距离 / 容器滚动高度 = x / 容器可视高度
    • x 为 top/left距离
  • 虚拟滚动计算方式: 0.数据总数 1.行高: 设置一个默认行高, 通过渲染后获取真实高度, 更新行高。 2.行数: 容器可视高度 / 行高, 行数可适当加大, 补充空白位 3.起始位置(获取渲染数据起始位置): 滚动距离 / 行数, 需要进行向上取舍 4.结束位置: 起始位置 + 行数 5.设置总高: 数据总数 * 行高 6.设置浮动距离: 起始位置 * 行高

  • 虚拟滚动优化 1.计算滚动速率 - 记录起始 scrollTop, 滚动事件中, 定时16ms 得到的位置, 相减得到的 px/16ms - js // 应该还要加个防抖,进行解锁 let scrollTop = document.documentElement.scrollTop; window.onscroll = function (e) { setTimeout(function () { const tempScrollTop = document.documentElement.scrollTop if (Math.abs(scrollTop - tempScrollTop) === 0) return console.log(Math.abs(scrollTop - tempScrollTop)) scrollTop = tempScrollTop }, 16) } 2.判断速率来对计算逻辑进行锁定,慢下来后进行解锁 3.锁定的时候,清空展示,使用背景图片进行展示