-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (30 loc) · 1.12 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
</head>
<body>
<a class="img2youtube" title="Title of video" href="http://youtu.be/u1zgFlCw8Aw">
<img src="http://dummyimage.com/640x390/666/fff" width="640" height="390" />
</a>
<br/>
<a class="img2youtube" title="Title of video" href="http://youtu.be/0Bmhjf0rKe8">
<img src="http://dummyimage.com/350x200/ABC/ddd" width="640" height="390" />
</a>
<br/>
<a class="img2youtube" title="Title of video" href="http://youtu.be/vdQj2ohqCBk">
<img src="http://dummyimage.com/425x349/DEF/000" width="425" height="349" />
</a>
<br/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.img2youtube.js"></script>
<script type="text/javascript">
$(function() {
$('a.img2youtube').img2youtube();
// optionally, turn off autoplay
//$('a.img2youtube').img2youtube({'autoplay': false });
});
</script>
</body>
</html>