-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathtest.html
84 lines (79 loc) · 2.53 KB
/
test.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Cache-Control" content="no-cache" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Test Page</title>
</head>
<body background="/files/bg.gif">
<p>这是一个测试页面</p>
<p>This is a test page</p>
<br><br><br>
<button class="button button1" onclick="myFunction1()">按钮1</button>
<br>
<div id="myDIV1" style="display: none;">内容1
<br>
<button class="button button1" onclick="myFunction1()">按钮a</button>
</div>
<br>
<button class="button button1" onclick="myFunction2()">按钮2</button>
<br>
<div id="myDIV2" style="display: none;">内容2
<br>
<button class="button button1" onclick="myFunction2()">按钮b</button>
</div>
<br>
<button class="button button1" onclick="myFunction3()">按钮3</button>
<br>
<div id="myDIV3" style="display: none;">内容3
<br>
<button class="button button1" onclick="myFunction3()">按钮c</button>
</div>
<br>
<button class="button button1" onclick="myFunction4()">按钮4</button>
<br>
<div id="myDIV4" style="display: none;">内容4
<br>
<button class="button button1" onclick="myFunction4()">按钮d</button>
</div>
<iframe src="guide/SSRSpeed.html" frameborder="1" width="100%" height="100%"></iframe>
<script type="text/javascript">
document.write("Screen resolution: ")
document.write(screen.width + "*" + screen.height)
document.write("<br />")
document.write("Available view area: ")
document.write(screen.availWidth + "*" + screen.availHeight)
document.write("<br />")
document.write("Color depth: ")
document.write(screen.colorDepth)
document.write("<br />")
document.write("Buffer depth: ")
document.write(screen.bufferDepth)
document.write("<br />")
document.write("DeviceXDPI: ")
document.write(screen.deviceXDPI)
document.write("<br />")
document.write("DeviceYDPI: ")
document.write(screen.deviceYDPI)
document.write("<br />")
document.write("LogicalXDPI: ")
document.write(screen.logicalXDPI)
document.write("<br />")
document.write("LogicalYDPI: ")
document.write(screen.logicalYDPI)
document.write("<br />")
document.write("FontSmoothingEnabled: ")
document.write(screen.fontSmoothingEnabled)
document.write("<br />")
document.write("PixelDepth: ")
document.write(screen.pixelDepth)
document.write("<br />")
document.write("UpdateInterval: ")
document.write(screen.updateInterval)
document.write("<br />")
</script>
<script type="text/javascript" src="/JS/botton1.js"></script>
</body>
</html>