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

vectorscrolling

v2.0.12

Published

Scrolling animation library. A practical website implementation for animation designers and graphic artists. Leverating GSAP out of the box, but compatible with any technology with a seek() method.

Downloads

9

Readme

Control, control, control

I have determined that there are 5 different ways that you might need control your scrolling animations. Look at the visual aid below.

The 5 Element Positions

Since I'm a creative technologist this description of how it works is most likely going to be complicated. You target any of your elements and think about when it comes into view. Does the animation start as it comes into view, or does the animation wait until the entire element is on the screen? This whole system is based on percentages. The elements you target will have a point which activates the animation, and another point which deactivates it.

The logic here is to active when what percentage of your element's height is less than what percentage of the screen's height and vice-versa for deactivating. Here are the 5 element positions for activation and deactivation, and a handy graphic for explaining them.

  1. Activate when 0% is at 100%, deactivate when 100% is at 0%.
  2. Activate when 100% is at 100%, deactivate when 0% is at 0%.
  3. Activate when 0% is at 0%, deactivate when 100% is at 100%.
  4. Activate when 0% is at 0%, deactivate when 100% is at 0%.
  5. Activate when 0% is at 100%, deactivate when 100% is at 100%.

Here is how you use it.

Control a GSAP Timeline Animation

vs("#myTarget", myGSAPTimeline);

Customize the Scroll Condition

vs("#myTarget", myGSAPTimeline, {
	condition: 2
});

Advanced - Condition 6 - Custom Everything

vs("#myTarget", myGSAPTimeline, {
	condition: 6,
	start: {
		when: "25%",
		is: "100%",
		vals: {
			step: 0
		},
		call: function(){
			console.log("this element has entered the start condition");
		}
	},
	end: {
		when: "75%",
		is: "0%",
		vals: {
			step: 255
		},
		call: function(){
			console.log("this element has left the end condition");
		}
	},
	scroll: function(vals) {
		console.log(vals); 
		// returns vals object with properties at their percentage through the states.
	}
});

Power Options

If you look at condition 6, you'll notice a bunch of options. These are available for all of the above examples. You can leverage the time-saving features with the default condition, but also react when the element is within the condition's range. Below I'm using the default condition (1) by not specifying it, but using the advanced feature of overriding the scroll method.

vs("#myTarget", myGSAPTimeline, {
	start: {
		vals: {
			miles: 100
		}
	},
	end: {
		vals: {
			miles: 200
		}
	},
	scroll: function(vals) {
		console.log(vals)
	}
});

Have fun

Demo