Created
December 16, 2015 22:24
-
-
Save botic/e8b7e2d888d9bf1597b8 to your computer and use it in GitHub Desktop.
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
| .wrapper { | |
| transform: perspective(1000px) rotateX(30deg); | |
| position: absolute; | |
| animation: crawl 20s linear 0s infinite; | |
| margin: 0 auto !important;; | |
| width: 800px; | |
| } | |
| @keyframes crawl { | |
| from { top: 100px; } | |
| to { top: -1700px; } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment