Skip to content

Instantly share code, notes, and snippets.

@Gennad-r
Gennad-r / animate-this.js
Last active June 20, 2017 07:26
Animation blocks on scrolling
//Animation blocks on scrolling
//CSS for animation:
/*.animation{
font-weight: bold;
color: navy;
animation: animation-name 1s ease-in-out;
}
@keyframes animation-name{
0%{transform: translate(-20px, 20px) rotate(-10deg);
opacity: 0;}