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
| //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;} |