Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

Latest commit

 

History

History

transition-timings

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Transition Timings

Some variables for easily setting cubic-bezier timing functions. Timing functions courtesy of jquery.easie and Ceaser.

Demo

You can find a demo of these easing functions here: http://jqueryui.com/easing/

Usage

.element {
    transition: left 0.2s $ease-in-quad;
}

Output

.element {
    transition: left 0.2s cubic-bezier(0.550,  0.085, 0.680, 0.530);
}