.fading {
transition-duration: .8s;
transition-timing-function: cubic-bezier(.23,1,.32,1);
transition-delay: 0s;
transform-origin: 50% 50%;
transform: translateY(20px) translateZ(0);
opacity: 0;
transition-property: all;
}
.fading.fading-done {
transform: translateY(0) translateZ(0);
opacity: 1;
}
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.