forked from MinnPost/jquery-vertical-timeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·68 lines (56 loc) · 2.23 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html class="no-js" lang="en" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>jQuery Vertical Example</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="bower_components/normalize-css/normalize.css">
<link rel="stylesheet" href="dist/jquery-vertical-timeline.min.css">
<link rel="stylesheet" href="example/style.css">
</head>
<body>
<div class="example">
<h1>Kitten JSON Example</h1>
<a class="spreadsheet-link" href="https://github.com/MinnPost/jquery-vertical-timeline/blob/master/example/example.json">JSON</a>
<pre><code>// Uses example/example.json data soure
{
data: data,
width: '75%'
}</code></pre>
<div class="timeline-jquery-example-kitten cf"></div>
</div>
<div class="example">
<h1>Minnesota Gambling Example</h1>
<a class="spreadsheet-link" href="https://docs.google.com/spreadsheet/pub?key=0AtX8MXQ89fOKdDZadGcyNE9CZmFZV29tQjI5RFU3X3c">Spreadsheet</a>
<pre><code>{
key: 'https://docs.google.com/spreadsheet/pub?key=0AtX8MXQ89fOKdDZadGcyNE9CZmFZV29tQjI5RFU3X3c&output=html',
sheetName: 'timeline-data',
defaultDirection: 'oldest',
defaultExpansion: 'collapsed',
groupFunction: 'groupSegmentByDecade',
width: '50%',
tabletopOptions: {
parameterize: 'http://gs-proxy.herokuapp.com/proxy?url='
}
}</code></pre>
<div class="timeline-jquery-example-mn-gambling cf"></div>
</div>
<div class="example">
<h1>Minnesota Marriage Example</h1>
<a class="spreadsheet-link" href="https://docs.google.com/spreadsheet/pub?key=0AjYft7IGrHzNdHVTTi1xRGtpdHV5SzJDZW4yRnlRN2c">Spreadsheet</a>
<pre><code>{
key: '0AjYft7IGrHzNdHVTTi1xRGtpdHV5SzJDZW4yRnlRN2c',
sheetName: 'Entries',
tabletopOptions: {
parameterize: 'http://gs-proxy.herokuapp.com/proxy?url='
}
}</code></pre>
<div class="timeline-jquery-example-mn-example cf"></div>
</div>
<!-- Include scripts -->
<script type="text/javascript" src="bower_components/requirejs/require.js"></script>
<script type="text/javascript" src="example/example.js"></script>
</body>
</html>