diff options
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..572543e --- /dev/null +++ b/index.html | |||
| @@ -0,0 +1,73 @@ | |||
| 1 | <!DOCTYPE html> | ||
| 2 | <html lang="pl"> | ||
| 3 | |||
| 4 | <head> | ||
| 5 | <meta charset="utf-8"> | ||
| 6 | <title>There is nothing here beyond this cat..</title> | ||
| 7 | <meta name="author" content="Boxie - The Cat"> | ||
| 8 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| 9 | |||
| 10 | <!-- STYLESHEETS --> | ||
| 11 | <link href="css/bootstrap.min.css" rel="stylesheet"> | ||
| 12 | <link href="css/styles.css" rel="stylesheet"> | ||
| 13 | <link href="images/favicon.png" rel="shortcut icon"> | ||
| 14 | |||
| 15 | <!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries --> | ||
| 16 | <!--[if lt IE 9]> | ||
| 17 | <script src="js/html5shiv.js"></script> | ||
| 18 | <script src="js/respond.min.js"></script> | ||
| 19 | <![endif]--> | ||
| 20 | |||
| 21 | </head> | ||
| 22 | |||
| 23 | <body> | ||
| 24 | |||
| 25 | <!-- CONTENT --> | ||
| 26 | <div class="container text-center"> | ||
| 27 | <div class="center-block"> | ||
| 28 | |||
| 29 | <h1>There is nothing here beyond this cat..</h1> | ||
| 30 | <h2>Cats.. Cats everywhere! They took the internetz!</h2> | ||
| 31 | |||
| 32 | <!-- PARALLAX IMAGES --> | ||
| 33 | <div id="parallax_image" onclick="iCat()"> | ||
| 34 | <img alt="" class="js-plaxify img-responsive" data-yrange="10" | ||
| 35 | id="parallax_box" src="images/box.png"> | ||
| 36 | |||
| 37 | <img alt="" class="js-plaxify img-responsive" data-invert="true" | ||
| 38 | data-yrange="10" id="parallax_cat" src="images/cat.png"> | ||
| 39 | |||
| 40 | <img alt="" class="js-plaxify img-responsive" data-xrange="8" | ||
| 41 | id="parallax_eyes" src="images/eyes.png"> | ||
| 42 | |||
| 43 | <img alt="" class="js-plaxify img-responsive" data-yrange="10" | ||
| 44 | id="parallax_background" src="images/rear.png"> | ||
| 45 | </div> | ||
| 46 | <!-- END OF PARALLAX IMAGES --> | ||
| 47 | |||
| 48 | <!-- COPYRIGHT --> | ||
| 49 | <div class="copyright"> | ||
| 50 | <small class="text-center">© Cat</small> | ||
| 51 | </div> | ||
| 52 | <!-- END OF COPYRIGHT --> | ||
| 53 | |||
| 54 | <small class="text-center" id="icat"></small> | ||
| 55 | </div> | ||
| 56 | </div> | ||
| 57 | |||
| 58 | <!-- END OF CONTENT --> | ||
| 59 | |||
| 60 | <script type="text/javascript" > | ||
| 61 | function iCat() { | ||
| 62 | document.getElementById("icat").innerHTML= window.location.href; | ||
| 63 | } | ||
| 64 | </script> | ||
| 65 | |||
| 66 | <!-- SCRIPTS --> | ||
| 67 | <script type="text/javascript" src="js/jquery-2.1.1.min.js"></script> | ||
| 68 | <script type="text/javascript" src="js/plax.js"></script> | ||
| 69 | <script type="text/javascript" src="js/scripts.js"></script> | ||
| 70 | |||
| 71 | </body> | ||
| 72 | |||
| 73 | </html> | ||
