flash.html
1.69 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Flash</title>
<style type="text/css" rel="stylesheet">
body {
margin: 0;
font:12px/1.5 "sans serif",tahoma,verdana,helvetica;
background-color:#F0F0EE;
color:#222222;
overflow:hidden;
}
label {
cursor:pointer;
}
.main {
margin: 0 10px;
}
.table {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:0;
display:block;
}
.table li {
padding:0;
margin-bottom:10px;
display:list-item;
line-height:1.5;
}
.table li label {
font-weight:bold;
}
.table li input {
vertical-align:middle;
}
.table li img {
vertical-align:middle;
}
</style>
<script type="text/javascript">
var KE = parent.KindEditor;
location.href.match(/\?id=([\w-]+)/i);
var id = RegExp.$1;
KE.event.ready(function() {
KE.util.pluginLang('flash', document);
KE.util.hideLoadingPage(id);
}, window, document);
</script>
</head>
<body>
<div class="main">
<ul class="table">
<li>
<label for="url"><span id="lang.url"></span></label>
<input type="text" id="url" name="url" value="http://" maxlength="255" style="width:90%;" />
</li>
<li>
<label for="width"><span id="lang.width"></span></label>
<input type="text" id="width" name="width" value="550" maxlength="4" style="width:50px;text-align:right;" /> px
</li>
<li>
<label for="height"><span id="lang.height"></span></label>
<input type="text" id="height" name="height" value="400" maxlength="4" style="width:50px;text-align:right;" /> px
</li>
</ul>
</div>
</body>
</html>