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

tank-vue3-seamless-scroll

v2.1.0

Published

English | [中文](./README_zh.md)

Readme

English | 中文

tank-vue3-seamless-scroll

Version 2.0 - Now powered by CSS Keyframes! 🚀

What's New in V2.0

  • CSS-based Animation: Native CSS keyframes for buttery smooth scrolling
  • Virtual Scrolling: Handle 100,000+ items with ease
  • GPU Accelerated: Hardware-accelerated transforms
  • Zero Dependencies: No external libraries required
  • 100% API Compatible: Drop-in replacement for v1.x
  • Smart Rendering: Only renders visible content with content-visibility

Features

  • 🎯 High-performance seamless scrolling
  • 🔄 Infinite loop animation
  • ⏸️ Pause on hover
  • 🔃 Reverse direction support
  • 📊 Virtual scrolling for massive datasets
  • 🐛 Built-in debug mode

Requirements

  • Vue 3.x
  • Node.js 14.15.0+
  • Modern browser with CSS Keyframes support

Quick Start

install

npm install --save tank-vue3-seamless-scroll

import

import TankSeamlessScroll from "tank-vue3-seamless-scroll"

use component


<div style="height:300px;">
    <tank-seamless-scroll :step-length="25" :debug="true" :reverse="false">
        <div class="demo">
            <div v-for="i in 2" :key="i">test{{ i }}</div>
        </div>
    </tank-seamless-scroll>
</div>

API Reference

| Prop | Type | Default | Description | |------|------|---------|-------------| | step-length | Number | 60 | Scroll speed in pixels per second | | reverse | Boolean | false | Reverse scrolling direction | | debug | Boolean | false | Show debug overlay | | pauseOnHover | Boolean | true | Pause animation on mouse hover | | virtual | Boolean | false | 🆕 Enable virtual scrolling mode | | data | Array | [] | 🆕 Data array (virtual mode only) | | item-height | Number | 50 | 🆕 Item height in pixels (virtual mode only) | | buffer | Number | 5 | 🆕 Buffer items count (virtual mode only) | | auto-scroll-threshold | Number | 0 | 🆕 Auto scroll threshold - scroll only when item count >= this value |

Virtual Scrolling Mode 🆕

For large datasets (1000+ items), use virtual scrolling:

<tank-seamless-scroll 
  :virtual="true"
  :data="bigDataList"
  :item-height="40"
  :step-length="100">
  <template #item="{ item, index }">
    <div class="row">{{ item.text }}</div>
  </template>
</tank-seamless-scroll>

Auto Scroll Threshold 🆕

Automatically enable/disable scrolling based on item count:

<tank-seamless-scroll 
  :auto-scroll-threshold="5"
  :step-length="100">
  <div v-for="item in items" :key="item.id" class="row">{{ item.text }}</div>
</tank-seamless-scroll>

When items.length < 5, scrolling is disabled. When items.length >= 5, scrolling starts automatically. This is useful for dynamic lists where you want scrolling only when there's enough content.

License

MIT