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 🙏

© 2026 – Pkg Stats / Ryan Hefner

screen-scroll

v1.4.3

Published

screen-scroll是一个基于 vue3 实现的全屏或区域滚动组件

Readme

screen-scroll是一个基于 vue3 实现的全屏或区域滚动组件

安装

npm i screen-scroll

注册

import screenScroll from 'screen-scroll'
import 'screen-scroll/screen-scroll.css'

createApp(App).use(screenScroll).mount('#app')

使用

#基础使用
    <screenScroll>
      <div>doc1</div>
      <div>doc2</div>
    </screenScroll>

参数与事件

    #参数
    ScrollOption: {
        Id:'',// 多个组件时 必填 用于准确获取组件
        Index: 0,// 起始页下标 从0开始
        Time: 700,// 页面切换的间隔事件 单位ms
        Loop: false,// 是否循环 从0到结束 从结束到0
        PageHeight: "100vh",// 父元素高度
        Height: "100vh",// 子元素高度 auto为不额外设置高度
        Nav:false// 是否有侧边圆点导航
    }
    #事件
    beforeChange(from,to)
    from 从第几页跳出 to 跳转到第几页
    在页面跳转之前的事件 不会等待事件结束
    
    afterChange(from,to)
    from 从第几页跳出 to 跳转到第几页
    在页面跳转之后的事件 不会等待事件结束
    #使用
    <screenScroll :ScrollOption=ScrollOption @beforeChange=func1 @agterChange=func2>
      <div>doc1</div>
      <div>doc2</div>
    </screenScroll>

组件类

class PageScollClass {
  ChangeTime(time?: number): void;//用于改变页面之间切换时间
  PageNext(Number: number): void;//切换到下Number页
  PageUp(Number: number): void;//切换到上Number页
  PageTo(Number: number): void;//跳转到Number页
  ResizePageTo(Number: number): void;//立即跳转到Number
}
    <screenScroll ref="pagescrollref">
    </screenScroll>
    <script setup lang=ts>
    import { PageScollClass } from 'screen-scroll'
    let pagescrollref=ref<PageScollClass | null>(null)
    
    #调用 获取到节点后
    pagescrollref.value.pagescroll.xx
    </script>