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

scrollmoo

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

scrollmoo

ScrollMoo is a pure JavaScript-based tool that lets you create high-performance, keyframed scroll animations.

latest
Source
npmnpm
Version
1.1.11
Version published
Maintainers
1
Created
Source

ScrollMoo

ScrollMoo is a pure JavaScript-based tool that lets you create high-performance, keyframed scroll animations. Whether you're a professional web developer or just familiar with HTML, CSS, and JavaScript basics, the simplicity of ScrollMoo will make it easy and enjoyable to create spectacular web animations.

For more information, please visit ScrollMoo.com

Demos

Check out multiple demos on ScrollMoo's website.

Docs

You can find full documentation here.

Installation

You can find detailed installation guide here.

CDN

If you prefer to use a CDN

<script src="https://cdn.jsdelivr.net/npm/scrollmoo@1.1.11/dist/scrollmoo.min.js"></script>

NPM

You can also install it with NPM

npm install scrollmoo

Usage

import ScrollMoo from "scrollmoo"; // NPM

Static Object

Applies the same animation properties to all element(s).

let SM = ScrollMoo({
    ".your-element": {
        markers: true, // only during the development
        keyframes: {
            transform: {
                rotate: {
                    100: "360deg"
                }
            }
        }
    }
});

Dynamic Function

"i" represents the index of each element.

let SM = ScrollMoo({
    ".your-elements": i => ({
        markers: true, // only during the development
        keyframes: {
            transform: {
                rotate: {
                    100: (i + 1) * 45 + "deg"
                }
            }
        }
    })
});

License

MIT

Copyright (c) 2025, ScrollMoo.

Keywords

scrollmoo

FAQs

Package last updated on 16 Aug 2025

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