Last active
August 24, 2016 15:09
-
-
Save rusty-key/66f26eb9ec793fad44757ae4d01c338b to your computer and use it in GitHub Desktop.
widget animation
This file contains hidden or 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
// какая-то функция, которая показывает виджет | |
function showWidget($widget) { | |
$widget.appendTo($parentElement); | |
setTimeout(() => { | |
$widget.addClass('show-widget'); | |
}, 1); | |
} |
This file contains hidden or 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
.c--widget { | |
opacity: 0; | |
transform: translateY(-30px); | |
transition: opacity .2s ease, transform .3s ease; | |
&.show-widget { | |
opacity: 1; | |
transform: translateY(0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment