-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
57 lines (55 loc) · 1.47 KB
/
test.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
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<script>
INSTALL_OPTIONS = {
"location": {
"selector": "body",
"method": "append"
},
"images": [
{
"url": "//www.filepicker.io/api/file/JRDnZJbWQByU3XBE4lXV",
"title": "Nissan 370Z",
"caption": "V6 Naturally Aspirated",
"linkHref": "#"
},
{
"url": "//www.filepicker.io/api/file/YIXvSnThSkKzYaw1fFag",
"title": "Nissan GTR",
"caption": "V6 Twin Turboed",
"linkHref": "#"
},
{
"url": "//www.filepicker.io/api/file/MXiHNErLQ8e6CWhtGmyw",
"title": "Porsche 911 GT3",
"caption": "Deadliest car known to man",
"linkHref": "#"
},
{
"url": "//www.filepicker.io/api/file/unSwaSXRhu86Ky5SqpMb",
"title": "Toyota FT-1 Concept",
"caption": "New Supra?",
"linkHref": "#"
},
{
"url": "//www.filepicker.io/api/file/kZZLHrqXSkC0cPvBeQqx",
"title": "Lykan Hypersport",
"caption": "3.4 Million Dollar Car",
"linkHref": "#"
}
],
"height": 250
};
Eager = {
createElement: function() {
eagerAppEl = document.createElement('eager-app');
document.body.appendChild(eagerAppEl);
return eagerAppEl;
}
};
</script>
<script src="script.js"></script>
</body>