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

@guyn-style/animate

v0.1.0-alpha.13

Published

Guyn Style Animation Module

Downloads

7

Readme

Animate

Easing

Guyn comes with a some default great easing.

The function

To include an Guyn ease use ease($ease-name)

Example :

.mySelector {
	transition: opacity 1s ease(easeInQuad);
}

Will generate :

.mySelector {
	transition: opactity 1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

Default easing

| Ease name | Value | | -------------- | --------------------------- | | linear | 0.25, 0.25, 0.75, 0.75 | | ease | 0.25, 0.10, 0.25, 1 | | ease-in | 0.42, 0, 1, 1 | | ease-out | 0, 0, 0.58, 1 | | ease-in-out | 0.42, 0, 0.58, 1 | | easeInQuad | 0.55, 0.085, 0.68, 0.53 | | easeInCubic | 0.55, 0.055, 0.675, 0.19 | | easeInQuart | 0.895, 0.03, 0.685, 0.22 | | easeInQuint | 0.755, 0.05, 0.855, 0.06 | | easeInSine | 0.47, 0, 0.745, 0.715 | | easeInExpo | 0.95, 0.05, 0.795, 0.035 | | easeInCirc | 0.60, 0.04, 0.98, 0.335 | | easeInBack | 0.60, -0.28, 0.735, 0.045 | | easeOutQuad | 0.25, 0.46, 0.45, 0.94 | | easeOutCubic | 0.215, 0.61, 0.355, 1 | | easeOutQuart | 0.165, 0.84, 0.44, 1 | | easeOutQuint | 0.23, 1, 0.32, 1 | | easeOutSine | 0.39, 0.575, 0.565, 1 | | easeOutExpo | 0.19, 1, 0.22, 1 | | easeOutCirc | 0.075, 0.82, 0.165, 1 | | easeOutBack | 0.175, 0.885, 0.32, 1.275 | | easeInOutQuad | 0.455, 0.03, 0.515, 0.955 | | easeInOutCubic | 0.645, 0.045, 0.355, 1 | | easeInOutQuart | 0.77, 0, 0.175, 1 | | easeInOutQuint | 0.86, 0, 0.07, 1 | | easeInOutSine | 0.445, 0.05, 0.55, 0.95 | | easeInOutExpo | 1, 0, 0, 1 | | easeInOutCirc | 0.785, 0.135, 0.15, 0.86 | | easeInOutBack | 0.68, -0.55, 0.265, 1.55 |

Add custom easing

To overwrite the default easing set and add your own :

// define custom easing
$custom-easing: (
	"ease-header": "1, 1, 1, 1",
	"ease-footer": "1, 0, 0, 1",
);
// add them to the default easing set
$ease: add-custom-easing($custom-easing);

Transitions

Simple transition

A simple mixin for single property transition

@include transition($prop, $timing, $ease, $delay);

| variables | type | Description | | --------- | --------------- | ---------------------------------------------------------- | | $prop | String | Property to which transition should be applied | | $timing | Number|String | Transition duration. Number is used as ms | | $ease | String | Timing function | | $delay | Number|String | Transition delay duration. Number is interpreted as ms |

::: tip @henris/utils/index has to be imported before using the mixin. :::

Example :

// with duration number
.element {
	@include transition("opacity", 500, linear, 0);
}
// with string duration
.element {
	@include transition("opacity", 0.5s, linear, 0s);
}

Will generate:

// with duration number
.element {
	transition: opacity 500ms 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
// with string duration
.element {
	transition: opacity 500ms 0s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

Multiple transition proprieties

Guyn comes with a mixin to easily define a bunch of transitions on the same element. The transition-group mixin will also generate the will-change property.

// list definition
$transitions: (
	($prop, $timing, $delay, $ease),
	($prop, $timing, $delay, $ease),
	...
);
@include transition-group($transitions);

Each row of the transition list as to be defined by these 4 arguments in the order listed.

| variables | type | Description | | --------- | --------------- | ------------------------------------------------------ | | $prop | String | Property to which transition should be applied | | $timing | Number|String | Transition duration. Number is used as ms | | $delay | Number|String | Transition delay duration. Number is interpreted as ms | | $ease | String | Timing function |

Example :

$transitions: (
	("opacity", 500, 0, linear),
	("transform", 700, 0, ease),
	("color", 500, 0, easeInQuad)
);
.element {
	@include transition-group($transitions);
}

Will generate:

.element {
	transition: opacity 500ms 0ms cubic-bezier(0.25, 0.25, 0.75, 0.75), transform
			700ms 0ms cubic-bezier(0.25, 0.1, 0.25, 1),
		color 500ms 0ms cubic-bezier(0.55, 0.085, 0.68, 0.53);
	will-change: opacity, transform, color;
}