-
Notifications
You must be signed in to change notification settings - Fork 0
/
changeomatic.example.html
30 lines (30 loc) · 1.36 KB
/
changeomatic.example.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
<html>
<head>
<title>changeomatic example</title>
<link rel="stylesheet" type="text/css" href="changeomatic.css">
<style type="text/css">
body {font-family: sans-serif;}
</style>
</head>
<body>
<div id="changeomatic" class="changeomatic"></div>
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<!-- We're linking to our own hosted copies for this example, but you should figure out your own hosting solution -->
<script type="text/javascript" src="http://nerdsfornature.org/monitor-change/jquery.cycle2.min.js"></script>
<script type="text/javascript" src="http://nerdsfornature.org/monitor-change/jquery.cycle2.center.min.js"></script>
<script type="text/javascript" src="http://nerdsfornature.org/monitor-change/jquery-dateFormat.min.js"></script>
<script type="text/javascript" src="http://nerdsfornature.org/monitor-change/tabletop.js"></script>
<script type="text/javascript" src="changeomatic.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#changeomatic').changeomatic({
tag: 'morganfire03',
instagramKey: 'CHANGEME',
flickrKey: 'CHANGEME'
// googleSpreadsheetId: 'CHANGEME' // in case you want to read data from a spreadsheet generated by fireslurp
})
})
</script>
</body>
</html>