forked from vb/lazyframe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (64 loc) · 2.76 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
69
70
71
72
73
74
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Lazyframe Demo</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/dist/lazyframe.css">
<style>
.container {
max-width: 500px;
margin: 0 auto;
width: 100%
}
p {
font-family: "Helvetica Neue", Helvetica, Arial
}
.lazyframe {
margin-bottom: 100px
}
.lazyframe--custom {
background: #bada55;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
text-align: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center
}
.lazyframe--custom .lazyframe__title {
position: relative;
width: 100%;
display: block;
font-size: 32px;
font-family: Arial;
color: #fff
}
.lazyframe--custom::before {
width: auto
}
</style>
</head>
<body>
<div class="container">
<p>Youtube video with thumbnail and title from API</p>
<div class="lazyframe" data-src="https://www.youtube.com/embed/ara1uUvajoU" data-vendor="youtube"></div>
<p>Youtube video with custom thumbnail and title</p>
<div class="lazyframe" data-src="https://www.youtube.com/embed/ara1uUvajoU" data-vendor="youtube" data-title="Custom title" data-thumbnail="https://placekitten.com/500/281"></div>
<p>Vimeo video with thumbnail and title from API</p>
<div class="lazyframe" data-src="https://vimeo.com/45915667" data-vendor="vimeo"></div>
<p>Vimeo video with custom thumbnail and title</p>
<div class="lazyframe" data-src="https://vimeo.com/183524061" data-vendor="vimeo" data-title="Custom title" data-thumbnail="https://placekitten.com/500/281"></div>
<p>Iframe with custom theme and title</p>
<div class="lazyframe lazyframe--custom" data-src="https://www.surveymonkey.com/r/?sm=%2bd%2bdWobuoz7irMV%2fpzKPcJmrKosuGWSraJtIrFQ4wBQ%3d" data-title="Something completely different"></div>
<p>Google maps iframe with custom thumbnail and title that gets executed when in view</p>
<div class="lazyframe lazyframe--custom" data-src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJ8fA1bTmyXEYRYm-tjaLruCI&key=AIzaSyDQxRfx3HQrE0_oTFI2WHzoiGL_CM0JJfQ" data-title="Something completely different" data-initinview="true"></div>
</div>
<script src="/dist/lazyframe.min.js"></script>
<script>lazyframe('.lazyframe');</script>
</body>
</html>