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

seam-auto-scroll

v0.4.3

Published

SeamlessAutoScroll 自动滚动

Readme

Vue.js自动滚动组件实现指南 SeamlessAutoScroll 自动滚动

使用示例

<template>
  <div class="demo-wrapper">
    <SeamlessAutoScroll ref="srollCompRef1" :speed="4" @reset-before="onResetBefore" @scroll-end="onScrollEnd" @scrollStart="onScrollStart">
      <div v-for="item in items" :key="item.id" class="news-item">
        <h3>{{ item.title }}</h3>
        <p>{{ item.content }}</p>
      </div>
    </SeamlessAutoScroll>
  </div>
  <div class="demo-wrapper">
  <SeamlessAutoScroll :speed="20" :interval="[95, 2000]">
    <div v-for="item in items" :key="item.id" class="news-item">
      <h3>{{ item.title }}</h3>
      <p>{{ item.content }}</p>
    </div>
  </SeamlessAutoScroll>
</div>
</template>

<script lang="ts" setup>
import { ref } from 'vue';
import { SeamlessAutoScroll, SeamlessAutoScrollInstance } from 'seam-auto-scroll';
const srollCompRef1 = shallowRef<SeamlessAutoScrollInstance>();

function onScroll(v: number) {
    // console.log(v);
}
function onScrollStart(v: number) {
    console.log(v, 'onScrollStart');
    // srollCompRef1.value?.stopAutoScroll(); 
}
function onScrollEnd(v: number) {
    console.log(v);
    // srollCompRef1.value?.stopAutoScroll(); 
}

function onResetBefore(currentTop, needsScroll, _domUpdate, next) {
    needsScroll ? next(currentTop) : next(0)
}

const items = ref(
    Array.from({ length: 20 }, (_, i) => ({
    id: i,
    title: `News Item ${i + 1}`,
    content: 'This is a sample news content. '.repeat(10 + Math.floor(Math.random() * 10))
    }))
);
</script>

<style>
.demo-wrapper {
  height: 400px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
}

.news-item {
  padding: 15px;
  margin: 10px;
  background: #f8f9fa;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
</style>

Event

function onScroll(v: number): void;
function onScrollStart(v: number): void;
function onScrollEnd(v: number): void;
/**
 * @currentTop {number} 当前top
 * @needsScroll {boolean} 是否要滚动
 * @domUpdate {boolean} dom 发生变化
 * @next 设置位置重新执行下一步
 * @example @resetBefore="(currentTop, needsScroll, next) => needsScroll ? next(currentTop) : next(0)"
 */
function onResetBefore(currentTop: number, needsScroll: boolean, domUpdate: boolean, next: (v: number) => void): void;

Action

/**
 * 暂停滚动
 */
function pauseScroll(): void;
/**
 * 开始滚动
 */
function startAutoScroll(): void;
/**
 * 停止滚动
 */
function stopAutoScroll(): void;
/**
 * 延迟多少秒重新滚动
 */
function resetResumeTimer(resumeTime: number): void;

/**
 * 设置top
 */
function setScrollTop(value: number);