-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
63 lines (62 loc) · 2.46 KB
/
index.php
File metadata and controls
63 lines (62 loc) · 2.46 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
<?php
error_reporting(E_ALL | E_STRICT);
ini_set('display_errors', 'On');
?>
<html>
<head>
<title>YT</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="/jquery.js"></script>
<script type="text/javascript" src="/yt.js"></script>
</head>
<body>
<div id="main">
<div id="console">
<input type="text" id="inputline" />
<div id="results">
<div id="results_1">
</div>
<div id="results_2">
</div>
<div id="results_3">
</div>
</div>
</div>
<div id="playbar">
<div id="pause" class="btn pause" style="display:none;">=</div>
<div id="resume" class="btn resume">»</div>
<div id="progress_block">
<div id="progress">
<div id="total">
<div class="left">0:00</div>
<div class="middle"></div>
<div class="right">0:00</div>
</div>
<div id="loaded"></div>
<div id="playing">
<div class="left">0:00</div>
<div class="middle"></div>
<div class="right">0:00</div>
</div>
<div id="search_overlay">
<div class="info" style="display:none;">1:23</div>
</div>
</div>
</div>
</div>
<div id="player_box">
<div id="fix">fix</div>
<div id="video">
<object type="application/x-shockwave-flash" id="player" data="http://www.youtube.com/apiplayer?version=3&video_id=u1zgFlCw8Aw&enablejsapi=1&playerapiid=ytplayer" width="290" height="240">
<param name="allowScriptAccess" value="always">
<param name="bgcolor" value="#ffffff">
<param name="wmode" value="opaque">
</object>
</div>
<div id="image" style="display:none;">
<img src="" width="290" height="" />
</div>
</div>
</div>
</body>
</html>