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> <!--[if lt IE 7 ]> <html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]> <html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]> <html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]--> <head> <title>XXX</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <link href="../html/css/style.css" rel="stylesheet" type="text/css" media="screen"> <script src="../html/js/jquery-1.11.1.min.js"></script>
<script type="text/javascript"> $(function(){ $("body").attr("oncontextmenu", "return false;"); });
function md(e) { try { if (event.button==2||event.button==3) return false; } catch (e) { if (e.which == 3) return false; } } document.oncontextmenu = function() { return false; } document.ondragstart = function() { return false; } document.onmousedown = md;
</script> </head> <body class="bg-6" style="overflow-x: hidden;overflow-y: hidden; ">
<div style="width: 1080px; margin: 0 auto;"> <iframe src="rolling_text.php" height="160" width="1080" frameBorder="0" allowtransparency="true" scrolling="no" style="overflow: hidden;margin-top: 20px;visibility:hidden;" onload="this.style.visibility = 'visible';" ></iframe> <iframe id="main_frame" src="main.php" height="1200" width="1080" frameBorder="0" allowtransparency="true" scrolling="no" style="margin-top: -2px;overflow: hidden;visibility:hidden;" onload="this.style.visibility = 'visible';"></iframe> </div>
</body> </html>
|