forked from kissyteam/kissy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenu.PopMenu.html
More file actions
475 lines (269 loc) · 16.5 KB
/
Menu.PopMenu.html
File metadata and controls
475 lines (269 loc) · 16.5 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="generator" content="JsDoc Toolkit" />
<title>Menu.PopMenu</title>
<style>
/*************************************************************************************
* Reset
*************************************************************************************/
/** 清除内外边距 **/
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
form, fieldset, legend, button, input, textarea, /* form elements 表单元素 */
th, td /* table elements 表格元素 */ {
margin: 0;
padding: 0;
}
/** 设置默认字体 **/
body,
button, input, select, textarea /* for ie */ {
font: 14px/1.5 tahoma, arial, \5b8b\4f53, sans-serif;
}
h1, h2, h3, h4, h5, h6 { font-size: 100%; }
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp { font-family: courier new, courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读,让 small 正常化 */
/** 重置列表元素 **/
ul, ol { list-style: none; }
/** 重置文本格式元素 **/
a {color:#03c;text-decoration: none; }
a:hover { text-decoration: underline; }
sup { vertical-align: text-top; } /* 重置,减少对行高的影响 */
sub { vertical-align: text-bottom; }
/** 重置表单元素 **/
legend { color: #000; } /* for ie6 */
fieldset, img { border: 0; } /* img 搭车:让链接里的 img 无边框 */
button, input, select, textarea { font-size: 100%; } /* 使得表单元素在 ie 下能继承字体大小 */
/* 注:optgroup 无法扶正 */
/** 重置表格元素 **/
table { border-collapse: collapse; border-spacing: 0; }
/*************************************************************************************
* Layout
*************************************************************************************/
/* 居中 */
#content{
margin:0 10px;
}
/** 布局基础样式 **/
.col-main {
float: left;
width: 100%;
/* bug fix: 主栏没有内容时,在 Firefox 和 Chrome 等浏览器下,布局不对 */
min-height: 1px;
}
.col-sub, .col-extra {
float: left;
/*position: relative; 按需设置,仅在需要时添加 */
}
/** 清除浮动 **/
.layout:after, .main-wrap:after, .col-sub:after, .col-extra:after {
content: '\20';
display: block;
height: 0;
clear: both;
}
.layout, .main-wrap, .col-sub, .col-extra {
*zoom: 1;
}
/** 两栏布局 **/
.layout .main-wrap { margin-left: 240px; }
.layout .col-sub { width: 220px; margin-left: -100%; }
/*************************************************************************************
* JSDoc
* gray:444, blue:06f, green:0c9, red:930
*************************************************************************************/
/* reset for jsDoc */
body{color:#444;}
a{color: #06f;}
h1,h2,h3{margin-bottom:10px;padding:8px 0;font:18px tahoma, "Microsoft YaHei", sans-serif;;}
h1{font-size:28px;}
dl{margin-left:30px;}
dt{margin-bottom:5px;font-weight:bold;}
dd{margin-bottom:10px;padding-left:30px;font-size:12px;}
hr{margin:10px 0;height:0;overflow:hidden;border:none;border-top:1px dotted #ccc;}
#header{margin:0 10px;border-bottom: 1px solid #a4d3f2;}
.col-sub{border: 1px solid #a4d3f2;border-top:none;background:#f2f8fa;}
#footer{margin-top:10px;padding:10px 10px 30px 10px;text-align:center;color:#666;border-top:1px solid #ddd;}
.box{margin-bottom:10px;}
.box-hd h3{margin:0;font-size:18px;}
.box-bd{padding-left:30px;}
.col-sub .box{margin:0 10px 10px 10px;}
.class-title{color:#0c9;}
.summary-box{color:#666;font-size:12px;}
.param-list .name{color:#362e2b;}
.code{margin-top:10px;padding:6px 10px;border-left:3px solid #0c9;background:#edfae5;}
.attr,
.desc{color:#666;font-size:12px;}
.name{color:#930;}
.detail-list li{padding-bottom:5px;margin-bottom:10px;border-bottom:1px dotted #ccc;}
.detail-list li li{padding-bottom:0;margin-bottom:0;border-bottom:none;}
.detail-list .title{margin-bottom:10px;}
.detail-list div.desc{margin-left:30px;}
.detail-list li .view-source{display:none;_display:inline;}
.detail-list li:hover .view-source{display:inline;font-size:12px;}
.go-top{position:fixed;width:24px;height:24px;bottom:0;right:10px;line-height:24px;text-align:center;color:#fff;font-size:12px;font-weight:bold;background:#06f;
-moz-border-radius: 2px;
-khtml-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}
a.go-top:hover,
a.go-top:active{text-decoration:none;}
</style>
</head>
<body>
<div id="page">
<div id="header">
<h1 class="logo">API Documentation</h1>
</div>
<div id="content">
<div class="layout">
<div class="col-main">
<div class="main-wrap">
<!-- class title START-->
<h2 class="class-title">
Menu.PopMenu
</h2>
<!-- class title END-->
<!-- summary START -->
<div class="box summary-box">
<div class="box-bd">
<p>defined in:
<a href="../symbols/src/d__code_kissy_git_kissy_src_menu_src_popupmenu.js.html">popupmenu.js</a></p>
</div>
</div>
<!-- summary END -->
<!-- contructor START -->
<div class="box constructor-box">
<div class="box-hd">
<h3>Class </h3>
</div>
<div class="box-bd">
<ul class="list summary-list">
<li class="li">
<b class="name"><a href="../symbols/Menu.PopMenu.html#constructor">Menu.PopMenu</a></b>
<span class="param">()</span>
</li>
</ul>
</div>
</div>
<!-- constructor END -->
<!-- properties START -->
<!-- properties END -->
<!-- methods START -->
<!-- methods END -->
<!-- events START -->
<!-- events END -->
<!-- constructor details START-->
<div class="detail-box">
<a name="constructor"></a>
<div class="box-hd">
<h3>Class Detail</h3>
</div>
<div class="box-bd">
<ul class="list detail-list">
<li class="li">
<div class="title">
<b class="name">Menu.PopMenu</b>
<span class="param">()</span>
</div>
<div class="desc"></div>
<dl>
</dl>
</li>
</ul>
</div>
</div>
<!-- constructor details START-->
<!-- properties details START -->
<!-- properties detail END -->
<!-- methods detail START -->
<!-- methods detail END -->
<!-- events detail START -->
<!-- events detail START -->
</div>
</div>
<div class="col-sub">
<div class="box">
<div class="box-hd">
<h3>Classes</h3>
</div>
<div class="box-bd">
<ul class="list class-list">
<li><a href="../symbols/Anim.html">Anim</a></li>
<li><a href="../symbols/Anim.Easing.html">Anim.Easing</a></li>
<li><a href="../symbols/Attribute.html">Attribute</a></li>
<li><a href="../symbols/AutoComplete.html">AutoComplete</a></li>
<li><a href="../symbols/AutoComplete.Input.html">AutoComplete.Input</a></li>
<li><a href="../symbols/AutoComplete.LocalDataSource.html">AutoComplete.LocalDataSource</a></li>
<li><a href="../symbols/AutoComplete.RemoteDataSource.html">AutoComplete.RemoteDataSource</a></li>
<li><a href="../symbols/Base.html">Base</a></li>
<li><a href="../symbols/Button.html">Button</a></li>
<li><a href="../symbols/Component.html">Component</a></li>
<li><a href="../symbols/Component.Container.html">Component.Container</a></li>
<li><a href="../symbols/Component.Controller.html">Component.Controller</a></li>
<li><a href="../symbols/Cookie.html">Cookie</a></li>
<li><a href="../symbols/DD.html">DD</a></li>
<li><a href="../symbols/DD.Constrain.html">DD.Constrain</a></li>
<li><a href="../symbols/DD.DDM.html">DD.DDM</a></li>
<li><a href="../symbols/DD.Draggable.html">DD.Draggable</a></li>
<li><a href="../symbols/DD.DraggableDelegate.html">DD.DraggableDelegate</a></li>
<li><a href="../symbols/DD.Droppable.html">DD.Droppable</a></li>
<li><a href="../symbols/DD.DroppableDelegate.html">DD.DroppableDelegate</a></li>
<li><a href="../symbols/DD.Proxy.html">DD.Proxy</a></li>
<li><a href="../symbols/DD.Scroll.html">DD.Scroll</a></li>
<li><a href="../symbols/DOM.html">DOM</a></li>
<li><a href="../symbols/Event.html">Event</a></li>
<li><a href="../symbols/Event.Object.html">Event.Object</a></li>
<li><a href="../symbols/Event.Target.html">Event.Target</a></li>
<li><a href="../symbols/IO.html">IO</a></li>
<li><a href="../symbols/IO.XhrObject.html">IO.XhrObject</a></li>
<li><a href="../symbols/KISSY.html">KISSY</a></li>
<li><a href="../symbols/KISSY.Defer.html">KISSY.Defer</a></li>
<li><a href="../symbols/KISSY.Loader.html">KISSY.Loader</a></li>
<li><a href="../symbols/KISSY.Loader.Module.html">KISSY.Loader.Module</a></li>
<li><a href="../symbols/KISSY.Promise.html">KISSY.Promise</a></li>
<li><a href="../symbols/Menu.html">Menu</a></li>
<li><a href="../symbols/Menu.PopMenu.html">Menu.PopMenu</a></li>
<li><a href="../symbols/MenuButton.html">MenuButton</a></li>
<li><a href="../symbols/MVC.html">MVC</a></li>
<li><a href="../symbols/MVC.Collection.html">MVC.Collection</a></li>
<li><a href="../symbols/MVC.Model.html">MVC.Model</a></li>
<li><a href="../symbols/MVC.Router.html">MVC.Router</a></li>
<li><a href="../symbols/MVC.View.html">MVC.View</a></li>
<li><a href="../symbols/NodeList.html">NodeList</a></li>
<li><a href="../symbols/Overlay.html">Overlay</a></li>
<li><a href="../symbols/Overlay.Dialog.html">Overlay.Dialog</a></li>
<li><a href="../symbols/Overlay.Popup.html">Overlay.Popup</a></li>
<li><a href="../symbols/UIBase.html">UIBase</a></li>
<li><a href="../symbols/UIBase.Align.html">UIBase.Align</a></li>
<li><a href="../symbols/UIBase.Box.html">UIBase.Box</a></li>
<li><a href="../symbols/UIBase.Close.html">UIBase.Close</a></li>
<li><a href="../symbols/UIBase.Constrain.html">UIBase.Constrain</a></li>
<li><a href="../symbols/UIBase.ContentBox.html">UIBase.ContentBox</a></li>
<li><a href="../symbols/UIBase.Drag.html">UIBase.Drag</a></li>
<li><a href="../symbols/UIBase.Loading.html">UIBase.Loading</a></li>
<li><a href="../symbols/UIBase.Mask.html">UIBase.Mask</a></li>
<li><a href="../symbols/UIBase.Position.html">UIBase.Position</a></li>
<li><a href="../symbols/UIBase.Resize.html">UIBase.Resize</a></li>
<li><a href="../symbols/UIBase.StdMod.html">UIBase.StdMod</a></li>
<li><a href="../symbols/Waterfall.html">Waterfall</a></li>
<li><a href="../symbols/Waterfall.Loader.html">Waterfall.Loader</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div>
Copyright 2010-2012 , <a href="http://docs.kissyui.com" target="_blank">kissyteam</a>
</div>
</div>
<a class="go-top" href="#page">Top</a>
</div>
</body>
</html>