Skip to content

Instantly share code, notes, and snippets.

View Fasteroid's full-sized avatar
🪐

Fasteroid

🪐
View GitHub Profile
@baranok
baranok / easing-firefox.css
Created August 8, 2015 16:40
Some transition timing funcs from firefox, some custom by me and two animations
.easing.quartic-in {
transition-timing-function: cubic-bezier(0.9,0.03,0.69,0.22);
}
.easing.quintic-in {
transition-timing-function: cubic-bezier(0.76,0.05,0.86,0.06);
}
.easing.exponential-in {
transition-timing-function: cubic-bezier(0.95,0.05,0.8,0.04);
}
.easing.circular-in {