All Projects → andrew--r → utransition

andrew--r / utransition

Licence: other
A tiny (~2KB) library providing you an easy way to manage time-based transitions

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to utransition

preact-transitioning
Preact components for easily implementing basic CSS animations and transitions
Stars: ✭ 35 (+59.09%)
Mutual labels:  transition
onscroll-effect
A tiny JavaScript library to enable CSS animations when user scrolls.
Stars: ✭ 35 (+59.09%)
Mutual labels:  transition
postcss-will-change-transition
PostCSS plugin to add will-change property after transition declarations
Stars: ✭ 15 (-31.82%)
Mutual labels:  transition
react-transition-state
Zero dependency React transition state machine.
Stars: ✭ 239 (+986.36%)
Mutual labels:  transition
MTTransitions
iOS Transitions ports from GL-Transitions.
Stars: ✭ 178 (+709.09%)
Mutual labels:  transition
react-page-swapper
An orchestrator that eases out the implementation of page transitions
Stars: ✭ 16 (-27.27%)
Mutual labels:  transition
minimal-player
This is a minimal, clean audio/music/mp3 player with spinning cover images, built with jQuery, TweenMax.js and SVG images.
Stars: ✭ 48 (+118.18%)
Mutual labels:  transition
ux-lab
No description or website provided.
Stars: ✭ 49 (+122.73%)
Mutual labels:  transition
My Android Garage
A quick reference guide for Android development.
Stars: ✭ 66 (+200%)
Mutual labels:  transition
react-scrolling-color-background
background with color transitioning as you scroll, declarative and easy to setup
Stars: ✭ 53 (+140.91%)
Mutual labels:  transition
SPLarkController
Custom transition between controllers. Settings controller for your iOS app.
Stars: ✭ 967 (+4295.45%)
Mutual labels:  transition
aerostore
🎨 Aerostore - Aerolab Challenge using Next.js and Micro.js from Zeit
Stars: ✭ 20 (-9.09%)
Mutual labels:  microjs
react-animations-from-scratch
medium.com/@alex_holachek/building-animations-in-react-from-scratch-c66a582c9b65
Stars: ✭ 19 (-13.64%)
Mutual labels:  transition
LollipopTransition
关于共享元素与transition框架的学习
Stars: ✭ 30 (+36.36%)
Mutual labels:  transition
anim8js
The ultimate animation library for javascript - animate everything!
Stars: ✭ 33 (+50%)
Mutual labels:  transition
use-spring
Hooke's law hook
Stars: ✭ 53 (+140.91%)
Mutual labels:  transition
STCubeTransition
A custom view transition that provides transition between 2 different views with 3D cube rotate effect.
Stars: ✭ 16 (-27.27%)
Mutual labels:  transition
dpar
Neural network transition-based dependency parser (in Rust)
Stars: ✭ 41 (+86.36%)
Mutual labels:  transition
FiniteStateMachine
This project is a finite state machine designed to be used in games.
Stars: ✭ 45 (+104.55%)
Mutual labels:  transition
NiceDemo
iOS project, built on improved MVP architecture using Coordinator pattern for routing 😎
Stars: ✭ 54 (+145.45%)
Mutual labels:  transition

Build Status

utransition

A tiny (~2KB) library providing you an easy way to manage time-based transitions. You just set prefered duration and easing and then specify how things should change basing on transition progress. For example, you can write small wrapper around this library that allows you to animate page scroll dynamically.

utransition is available via npm:

$ npm install utransition

Usage

import utransition from 'utransition';

const transition = utransition(200, requestAnimationFrame);
let wasPaused = false;

transition.onStart = () => {
	console.log('transition started');
};

transition.onProgress = () => {
	console.log(`eased progress: ${transition.easedProgress}`);
	console.log(`linear progress: ${transition.linearProgress}`);

	if (linearProgress > 0.4 && !wasPaused) {
		transition.pause();
	} else if (wasPaused && linearProgress > 0.6) {
		transition.abort();
	}
}

transition.onPause = () => {
	console.log('transition paused');
};

transition.onResume = () => {
	console.log('transition resumed');
};

transition.onAbort = () => {
	console.log('transition aborted');
}

transition.onEnd = () => {
	console.log('transition finished');
}

transition.play();

API

utransition(duration, timer[, easing])

Creates a transition object.

Example:

const myTransition = utransition(200, requestAnimationFrame);

duration

Type: Number
Minimum: 1

Transition duration in milliseconds.

timer

Type: Function

Timer like window.requestAnimationFrame.

easing

Type: Function
Default: linear (progress) => progress

Custom easing function that takes linear progress in range from 0 to 1 and should return eased progress.

transition object

Created by utransition call:

const transition = utransition(200, requestAnimationFrame);

// API:
transition === {
	play() {},
	pause() {},
	abort() {},

	onStart() {},
	onPause() {},
	onResume() {},
	onAbort() {},
	onEnd() {},

	state: Enumerable['stopped', 'in progress', 'paused'],
	easedProgress: Number,
	linearProgress: Number,
};

All callbacks are invoked in the transition context, so you can do things like this.abort() inside callbacks.

transition.state

Type: String
Overridable: false

Current transition state. One of stopped, paused, in progress.

transition.linearProgress

Type: Number
Overridable: false

Current linear progress.

transition.easedProgress

Type: Number
Overridable: false

Current eased progress.

transition.play()

Type: Function
Overridable: false

Starts or resumes transition.

transition.pause()

Type: Function
Overridable: false

Pauses transition.

transition.abort()

Type: Function
Overridable: false

Aborts transition.

transition.onStart

Type: Function
Overridable: true
Context: transition

Called when transition starts. Usage:

const transition = utransition(...);
transition.onStart = () => {
	console.log('transition started');
};

transition.onPause

Type: Function
Overridable: true
Context: transition

Called when transition pauses. Usage:

const transition = utransition(...);
transition.onPause = () => {
	console.log('transition paused');
};

transition.onResume

Type: Function
Overridable: true
Context: transition

Called when transition resumes. Usage:

const transition = utransition(...);
transition.onResume = () => {
	console.log('transition resumed');
};

transition.onAbort

Type: Function
Overridable: true
Context: transition

Called when transition aborts. Usage:

const transition = utransition(...);
transition.onAbort = () => {
	console.log('transition aborted');
}

transition.onProgress

Type: Function
Overridable: true
Context: transition

Called on every timer tick except first tick after start or resume. Usage:

const transition = utransition(...);
transition.onProgress = () => {
	if (transition.linearProgress > 0.5) {
		transition.abort();
	}
}

transition.onEnd

Type: Function
Overridable: true
Context: transition

Called when transition ends. Usage:

const transition = utransition(...);
transition.onEnd = () => {
	console.log('transition finished!');
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].