-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdemo.html
27 lines (27 loc) · 1.17 KB
/
demo.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
<html>
<head>
<title>Android Screen Stream Demo</title>
<style type="text/css">
body{padding:0;margin:0;}
#mobilebody{box-shadow: 5px 5px 20px #888888;border-radius:20px;border-top:40px solid #000000;border-bottom:40px solid #000000;width:240px;height:400px;padding:5px;background-color:#000000;margin:auto;}
</style>
<script type='text/javascript' src='http://cdn.staticfile.org/jquery/1.10.2/jquery.min.js'></script>
<script>
function startTime(){
document.getElementById('demoimg').src=document.getElementById('demoimg').src+"?framedata";
setTimeout('startTime()',1000);
}
</script>
</head>
<body onload="startTime()">
<div id="header">
<h1 style="text-align:center;margin-top:100px;"></h1>
</div>
<div id="mobilebody">
<img id="demoimg" src="current_frame.jpeg" width="240px" height="400px">
</div>
<div id="footer">
<div style="text-align:center;margin-top:20px;font-size:32px;font-weight:bolder;font-family:'PT Sans Narrow',Calibri,'Lucida Sans',Helvetica,'Hiragino Sans GB','Microsoft Yahei','微软雅黑',Arial,Verdana;color:#333333;"><p>MEIZU MX3</p></div>
</div>
</body>
</html>