-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 989 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 989 Bytes
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>tileify.js</title>
<meta name="viewport" content="width=device-width">
<meta property="og:title" content="tileify.js" />
<meta property="og:description" content="" />
<meta property="og:url" content="" />
<meta property="og:image" content=""/>
<meta property="og:site_name" content="tileify.js" />
<link rel="stylesheet" href="css/base.css">
</head>
<body>
<div class="tileThis"></div>
<a href="https://github.com/vagh27/tileify.js" target="_blank">view on Github</a>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript" src="tileify.js"></script>
<script type="text/javascript">
$('.tileThis').tileify({
numCols:10,
numRows:10,
autoScrollSpeed:15000,
photoFile: 'img/fodder/',
onEnd: function(){ $('a').fadeIn(); }
});
</script>
</body>
</html>