summaryrefslogtreecommitdiffstats
path: root/index.html
blob: 572543e70549ea4cbbb67340fd89b3046edf20a2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="pl">

<head>
    <meta charset="utf-8">
    <title>There is nothing here beyond this cat..</title>
    <meta name="author" content="Boxie - The Cat">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <!-- STYLESHEETS -->
    <link href="css/bootstrap.min.css" rel="stylesheet">
    <link href="css/styles.css" rel="stylesheet">
    <link href="images/favicon.png" rel="shortcut icon">

    <!-- HTML5 shiv and Respond.js IE8 support of HTML5 elements and media queries -->
    <!--[if lt IE 9]>
    <script src="js/html5shiv.js"></script>
    <script src="js/respond.min.js"></script>
    <![endif]-->

</head>

<body>

<!-- CONTENT -->
<div class="container text-center">
    <div class="center-block">

        <h1>There is nothing here beyond this cat..</h1>
        <h2>Cats.. Cats everywhere! They took the internetz!</h2>

        <!-- PARALLAX IMAGES -->
        <div id="parallax_image" onclick="iCat()">
            <img alt="" class="js-plaxify img-responsive" data-yrange="10"
                 id="parallax_box" src="images/box.png">

            <img alt="" class="js-plaxify img-responsive" data-invert="true"
                 data-yrange="10" id="parallax_cat" src="images/cat.png">

            <img alt="" class="js-plaxify img-responsive" data-xrange="8"
                 id="parallax_eyes" src="images/eyes.png">

            <img alt="" class="js-plaxify img-responsive" data-yrange="10"
                 id="parallax_background" src="images/rear.png">
        </div>
        <!-- END OF PARALLAX IMAGES -->

        <!-- COPYRIGHT -->
        <div class="copyright">
            <small class="text-center">&copy; Cat</small>
        </div>
        <!-- END OF COPYRIGHT -->

        <small class="text-center" id="icat"></small>
    </div>
</div>

<!-- END OF CONTENT -->

<script type="text/javascript" >
function iCat() {
  document.getElementById("icat").innerHTML= window.location.href;
}
</script>

<!-- SCRIPTS -->
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/plax.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>

</body>

</html>