Last active
August 29, 2015 14:21
-
-
Save himstar/2bb8f01992bc1005ad24 to your computer and use it in GitHub Desktop.
TricksWay App Public
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
| <!DOCTYPE HTML> | |
| <html lang="EN"> | |
| <head> | |
| <meta charset="UTF-8"/> | |
| <title> TricksWay | App </title> | |
| <link href='http://fonts.googleapis.com/css?family=Open+Sans:300' rel='stylesheet' type='text/css'> | |
| <style> | |
| * { | |
| margin: 0; | |
| padding: 0; | |
| } | |
| body { | |
| color: #000; | |
| padding-top: 40px; | |
| font-family: 'Open Sans', sans-serif; | |
| font-size: 22px; | |
| } | |
| .wait { | |
| position: relative; | |
| margin: 10px auto; | |
| text-align: center; | |
| animation: fadey 2s linear infinite; | |
| } | |
| .loader { | |
| position: relative; | |
| background: url("tricksway-logo-logo-large.png"); | |
| width: 120px; | |
| height: 120px; | |
| margin: 4px auto; | |
| animation: distort 2s ease-out infinite; | |
| } | |
| .inner { | |
| position: relative; | |
| float: left; | |
| width: 40px; | |
| height: 40px; | |
| margin: 10px; | |
| background: #FFF; | |
| border-radius: 20px; | |
| animation: inner 2s ease-out infinite; | |
| } | |
| .inner.a { | |
| background: #E85A80; | |
| } | |
| .inner.b { | |
| background: #FAC140; | |
| } | |
| .inner.c { | |
| background: #4AB9B0; | |
| } | |
| .inner.d { | |
| background: #A4D27A; | |
| } | |
| @keyframes distort { | |
| 0% { | |
| transform: rotate(0deg); | |
| border-radius: 0px; | |
| } | |
| 50% { | |
| transform: rotate(90deg); | |
| border-radius: 60px; | |
| background: #AAA; | |
| } | |
| 100% { | |
| transform: rotate(180deg); | |
| border-radius: 0px; | |
| } | |
| } | |
| @keyframes inner { | |
| 0% { | |
| opacity: 0; | |
| border-radius: 20px; | |
| width: 20px; | |
| height: 20px; | |
| margin: 20px; | |
| } | |
| 50% { | |
| opacity: 1; | |
| border-radius: 0px; | |
| width: 60px; | |
| height: 60px; | |
| margin: 0px; | |
| } | |
| 100% { | |
| opacity: 0; | |
| border-radius: 20px; | |
| width: 20px; | |
| height: 20px; | |
| margin: 20px; | |
| } | |
| } | |
| @keyframes fadey { | |
| 0% { | |
| opacity: 0.2; | |
| } | |
| 50% { | |
| opacity: 1; | |
| } | |
| 100% { | |
| opacity: 0.2; | |
| } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="wait">Please Wait...</div> | |
| <br> | |
| <div class="loader"> | |
| <div class="inner a"></div> | |
| <div class="inner b"></div> | |
| <div class="inner c"></div> | |
| <div class="inner d"></div> | |
| </div> | |
| <script type="text/javascript"> | |
| function Redirect() | |
| { | |
| window.location="http://www.tricksway.com"; | |
| } | |
| setTimeout('Redirect()', 5000); | |
| </script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment