-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (32 loc) · 1.04 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Parallax Wall Backbone.js</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="jquery.scrollorama.js"></script>
<script type="text/javascript" src="underscore.js"></script>
<script src="backbone.js" type="text/javascript"></script>
<script type="text/template" id='image-template'>
<img src="<%= obj.url %>"/>
</script>
<script type="text/javascript" src="jquery.scrollorama.js"></script>
<body>
<div id="content" class="scrollblock">
<div class="columnleft">
<div id="parallax1">
</div>
</div>
<div class="columnright">
<div id="parallax2">
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>