-
Notifications
You must be signed in to change notification settings - Fork 3
/
Launcher.html
139 lines (112 loc) · 4.04 KB
/
Launcher.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="./codecanyon/src/css/ilightbox.css"/>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<!-- Not stored in GitHub. You must pay for this Plugin yourself -->
<script type="text/javascript" src="./codecanyon/src/js/jquery.requestAnimationFrame.js"></script>
<script type="text/javascript" src="./codecanyon/src/js/jquery.mousewheel.js"></script>
<script type="text/javascript" src="./codecanyon/src/js/ilightbox.packed.js"></script>
<script type="text/javascript" src="https://tableau.russellchristopher.org/javascripts/api/tableau_v8.js"></script>
</head>
<body>
<div id="content"></div>
<script>
var viz, agent;
function initialize() {
$.iLightBox(
[
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/BMD-TR-WEB/Dashboard4?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-Visits-vs-Time.jpg",
height: 450,
width: 936
},
type: "iframe",
caption: "Tableau Public visualization by unknown author."
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/BMD-TR-WEB/C-Full-Web?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-C-Full-Web.jpg",
height: 450,
width: 936
},
type: "iframe",
caption: "Tableau Public visualization by unknown author."
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/UnemploymentHorizionChart/HorizonChart?:embed=y&:toolbar=no&:display_count=no",
options: {
thumbnail: "img/thumb_horizon-chart.jpg",
height: 450,
width: 936
},
type: "iframe",
caption: "Unemployment Horizon by Joe Mako"
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/2014FIFAWorldCupBRAvsGERPlayerAttention/PlayerAttention?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-player-attention.jpg",
height: 450,
width: 936
},
type: "iframe",
caption: "And lastly, this one. Checkmate."
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/geographyofdiabetes/Dashboard2?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-diabetes.jpg",
height: 450,
width: 936
},
type: "iframe"
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/contributorstoobesity/Eatyourvegtables?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-eatyourveggies.jpg",
height: 450,
width: 936
},
type: "iframe"
},
{
URL: "https://tableau.russellchristopher.org/t/SkunkWorks/views/TwInfluencers/TwitterInfluencers?:embed=y&:display_count=no&:toolbar=no",
options: {
thumbnail: "img/thumb-TwitterInfluencers.jpg",
height: 450,
width: 936
},
type: "iframe"
}
],
{
skin: 'metro-white',
path: 'horizontal',
overlay: {
opacity: .7,
blur: false
},
keyboard: {
esc: false
},
styles: {
nextOpacity: .55,
prevOpacity: .55
}
}
);
return false;
};
// End of the "Open in Modal" Example
</script>
<script type="text/javascript">
// Initialize the app on document ready.
$(initialize);
</script>
</body>
</html>