-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
43 lines (40 loc) · 2.23 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
42
43
<!DOCTYPE html>
<html>
<head>
<title>Video</title>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<link rel="stylesheet" href="css/style.css" type="text/css" media="all" />
</head>
<body>
<!--<button type="button" id="full-screen-trigger" style="width: 100%; height:50px;">Fullscreen</button>-->
<div class="container" id="main">
<img src="img/welcome.png" style="width: 1080px;"></img>
<div id="tailynmarquee">
<marquee id="tailyn" scrollamount="2">At Tailyn, we combine our breadth of experience in communications and computing technologies, high quality manufacturing and efficient global sourcing to provide our customers a total turnkey solution in product design and manufacturing for both communications and applications sectors.</marquee>
</div>
<div id="tailynmodel">
<iframe border="0" frameBorder="0" scrolling="no" src="model.html" style="width: 1080px; height: 738px;">
Your browser does not support inline frames or is currently configured not to display inline frames.
</iframe>
</div>
</div>
<script type="text/JavaScript">
function requestFullScreen(element) {
var requestMethod = element.requestFullScreen || element.webkitRequestFullScreen
|| element.mozRequestFullScreen || element.msRequestFullScreen;
if (requestMethod) { // Native full screen.
requestMethod.call(element);
} else if (typeof window.ActiveXObject !== "undefined") { // Older IE.
var wscript = new ActiveXObject("WScript.Shell");
if (wscript !== null) {
wscript.SendKeys("{F11}");
}
}
}
document.getElementById("full-screen-trigger").addEventListener("click", function() {
element = document.getElementById("main"); requestFullScreen(element);}, false);
</script>
</body>
</html>