forked from codehandling/youmax
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyoumax.html
More file actions
99 lines (69 loc) · 2.61 KB
/
youmax.html
File metadata and controls
99 lines (69 loc) · 2.61 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Youmax 2.1 - complete Youtube channel on your website - Jquery plugin</title>
<!--<script src="./jquery.min.js"></script>-->
<script src="http://code.jquery.com/jquery-1.7.min.js"></script>
<script src="./js/youmax.js"></script>
<link rel="stylesheet" href="./css/youmax.css"/>
<script type="text/javascript">
function goClicked() {
$('#youmax').empty().append(' loading ...');
$('#youmax').youmax({
apiKey:'AIzaSyDEm5wGLsWi2G3WG40re-DAJcWioQSpJ6o',
youTubeChannelURL:$('#youTubeChannelUrl').val(),
youTubePlaylistURL:$('#youTubePlaylistUrl').val(),
youmaxDefaultTab:"UPLOADS",
youmaxColumns:3,
showVideoInLightbox:false,
maxResults:15,
});
//youTubeChannelURL=$('#youTubeChannelUrl').val();
//youTubePlaylistURL=$('#youTubePlaylistUrl').val();
}
</script>
<style>
body {
font-family: Calibri;
font-size: 14px;
text-align:center;
}
/*#youmax{width:100% !important;}
#youmax-video-list-div{background-color:rgb(53,53,53) !important;}
#youmax-tabs{background-color:rgb(53,53,53) !important;}
#youmax-header{background-color:black !important;}
.youmax-video-list-title{color:white !important;}
.youmax-video-list-views{color:green !important;}*/
</style>
</head>
<body>
<a href="http://www.codehandling.com/2013/03/youmax-20-complete-youtube-channel-on.html">
<h1>Youmax 2.0 - complete Youtube channel on your website - Jquery plugin</h1>
</a>
Enter your Youtube Channel Url: <span style="color:red;">(Ex: http://www.youtube.com/user/Apple)</span><br/>
<input type="text" id="youTubeChannelUrl"/> <br/><br/>
[Optional] - Enter your playlist Url to show in the featured Tab: <span style="color:red;">(Ex: http://www.youtube.com/playlist?list=PLHFlHpPjgk713fMv5O4s4Fv7k6yTkXwkV)</span><br/>
<input type="text" id="youTubePlaylistUrl"/>
<br/>
<input type="button" value="Go" onclick="goClicked();">
<br/>
<br/>
<div id="youmax"></div>
<br/><br/>
<a href="http://www.codehandling.com/2013/03/youmax-20-complete-youtube-channel-on.html">See how to use this plugin - at codehandling</a>
<br/><br/><br/>
<br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/>
<script>
$('#youmax').youmax({
apiKey:'AIzaSyDEm5wGLsWi2G3WG40re-DAJcWioQSpJ6o',
youTubeChannelURL:"http://www.youtube.com/user/apple",
youTubePlaylistURL:"http://www.youtube.com/playlist?list=PLHFlHpPjgk713fMv5O4s4Fv7k6yTkXwkV",
youmaxDefaultTab:"FEATURED",
youmaxColumns:3,
showVideoInLightbox:false,
maxResults:15,
});
</script>
</body>
</html>