-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1009 Bytes
/
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
<html>
<head>
<meta content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' name='viewport' />
<style type='text/css'>
/*<![CDATA[*/
*{margin:0;padding:0;border:none;background:#000;}
html{height:100%}
body{width:100%; height:100%;}
#left,#right{position:absolute;top:0;height:100%;width:50%}
#left{left:0}
#right{left:50%;}
/*]]>*/
</style>
<script type='text/javascript'>
//<![CDATA[
var _prevent = function(){
document.addEventListener('touchstart', function(e){e.preventDefault();}, false);
document.addEventListener('touchend', function(e){e.preventDefault();}, false);
document.addEventListener('touchmove', function(e){e.preventDefault();}, false);
}
//]]>
</script>
</head>
<body onload='_prevent()'>
<iframe id='left' src='fade/index.html'></iframe>
<iframe id='right' src='mesh/index.html'></iframe>
</body>
</html>