-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (41 loc) · 947 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>窗口</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="dialoger.css">
<style type="text/css">
.window-wrapper{
position: relative;
width: 80%;
height: 500px;
margin: 50px auto;
border: 2px solid #333;
}
</style>
</head>
<body>
<h1>Dialoger</h1>
<br>
<div class="window-wrapper" id="windowWrapper">
</div>
<br/><br/><br/><br/><br/><br/><br/>
<br/><br/><br/><br/><br/><br/><br/>
<h3>Dialoger</h3>
<script src="Util.js"></script>
<script src="dialoger.js"></script>
<script type="text/javascript">
var win01 = new Dialoger({
top : 180,
left : 750,
parent : document.getElementById('windowWrapper')
});
var win02 = new Dialoger({
parent : document.getElementById('windowWrapper')
});
var win03 = new Dialoger();
</script>
</body>
</html>