forked from cdotyone/mochaui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyoutube.html
More file actions
60 lines (48 loc) · 1.06 KB
/
youtube.html
File metadata and controls
60 lines (48 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en" dir="ltr" itemscope itemtype="http://schema.org/Article">
<head>
<meta charset="utf-8">
<!--MOCHAUI-->
<script type="text/javascript" src="../scripts/mootools-core-1.5.0-full-nocompat.js"></script>
<script type="text/javascript" src="../scripts/mootools-more-1.5.0.js"></script>
<!--MOCHAUI-->
<style type="text/css">
/* hide from ie on mac \*/
html {
height: 100%;
overflow: hidden;
}
#flashcontent {
height: 100%;
min-height: 100%;
}
/* end hide */
body {
height: 100%;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="flashcontent">
<strong>You need to upgrade your Flash Player</strong>
</div>
<script type="text/javascript">
// <![CDATA[
/* Zero7 */
var obj = new Swiff('https://www.youtube.com/v/AAfmCC0H2KY?border=0', { // Tourist (ft. tokyo police club)
container: $('flashcontent'),
id: 'myFlash',
width: '100%',
height: '100%',
params: {
'bgcolor' : '#fff',
'wmode' : 'transparent',
'scale' : 'noscale'
}
});
// ]]>
</script>
</body>
</html>