Last active
December 21, 2015 22:12
-
-
Save gabskoro/efbf1d4b3cef13dc4428 to your computer and use it in GitHub Desktop.
By Benjamin De Cock - stripe.com - https://www.youtube.com/watch?v=J6wUmQDQBkw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example 1 | |
.arrow { | |
animation: bounce 1s linear infinite; | |
} | |
@keyframes bounce { | |
0%, 100% { | |
transform: none; | |
/* ease-out cubic */ | |
animation-timing-function: cubic-bezier(.215, .61, .355, 1); | |
} | |
50% { | |
transform: translateX(20px); | |
/* ease-in cubic */ | |
animation-timing-function: cubic-bezier(.55, .055, .675, .19); | |
} | |
} | |
// Example 2 | |
<label> | |
<input type="checkbox">Remember me</input> | |
</label> | |
<label id="phone"> | |
Please enter your phone number: | |
<input type="tel"> | |
</label> | |
#phone { | |
transform: perspective(500px) rotateX(-.25turn); | |
transform-origin: 50% 0; | |
transition: .4s; | |
} | |
#phone.active { | |
transform: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment