forked from twbs/bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmodule.php
843 lines (708 loc) · 39 KB
/
module.php
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
<?php $page = "module" ?>
<?php $title="组件模块化"?>
<?php $description = "本项目基于cnBootstrap开源项目创建,致力于前端快捷开发!" ?>
<?php include("./common/meta.php"); ?>
</head>
<body>
<?php include("./common/header.php"); ?>
<div class="wrap">
<div class="sidebar">
<ul class="nav none">
<li><a href="#tpl">tpl <small>布局模板</small></a></li>
<li><a href="#box">box <small>区块盒子</small></a></li>
<li><a href="#list">list <small>列表</small></a></li>
<li><a href="#imglist">imglist <small>图片列表</small></a></li>
<li><a href="#imgtext">imgtext <small>图文混排</small></a></li>
<li><a href="#dropdown">dropdown <small>下拉菜单</small></a></li>
<li><a href="#table">table <small>表格</small></a></li>
<li><a href="#btn">btn <small>按钮</small></a></li>
<li><a href="#btn-group">btn-group <small>按钮组</small></a></li>
<li><a href="#btn-dropdown">btn-dropdown <small>按钮菜单</small></a></li>
<li><a href="#form">form <small>表单</small></a></li>
<li><a href="#nav">nav <small>导航</small></a></li>
<li><a href="#breadcrumb">breadcrumb <small>面包屑</small></a></li>
<li><a href="#paging">paging <small>分页</small></a></li>
<li><a href="#label">label/tag <small>标签标记</small></a></li>
<li><a href="#poptip">poptip <small>提示层</small></a></li>
<li><a href="#tiptext">tiptext <small>提示文本</small></a></li>
<li><a href="#tipbox">tipbox <small>提示框</small></a></li>
<li><a href="#progress">progress <small>进度条</small></a></li>
<li><a href="#media">media <small>媒体对象</small></a></li>
<li><a href="#step">step <small>步骤</small></a></li>
<li><a href="#misc">misc <small>杂项</small></a></li>
</ul>
</div> <!-- // div.sidebar -->
<div class="main">
<section id="tpl">
<h1>布局模板</h1>
<p>最常用的布局结构堪称经典,可以作为布局模板使用——内容盒子,列表,图文混排,图片滚动,下拉菜单等</p>
<p>经典布局不是指单一的某一种布局,针对不同的风格设计,都有优良的布局经典,敏捷开发无处不在,这里仅就某一类设计浅谈布局实现(@此处实例多是修改BT项目实例或引用lvmama的项目或针对未来需求的预设实现)。</p>
<p><strong>注:</strong> 针对公共模块提取调整,立足实际应用,除此外其他的不做规划。</p>
<h2 id="box">区块 box</h2>
<p>实现布局块,保证良好的扩展性</p>
<div class="docs-example">
<div class="p-box border">
<div class="p-box-head">
<a class="link-more fr" href="">更多 »</a>
<h4>标题 <small>一些说明</small></h4>
</div>
<div class="p-box-content">
<p>box-content 有默认内边距</p>
</div>
</div>
</div>
<h2 id="list">列表实现 list</h2>
<p>实现常见的布局列表,具备良好的扩展性</p>
<h2 id="imglist">图片列表 imglist</h2>
<p></p>
<h2 id="imgtext">图文混排 imgtext</h2>
<p></p>
</section>
<section id="table">
<h1>表格</h1>
<p>页面中常用的表格,信息展示,布局表格,产品列表,特定功能类。</p>
<p>详情参看: <a href="xOne/tables.html">tables</a></p>
</section>
<section id="btn">
<h1>按钮</h1>
<p>集合五种尺寸的按钮,3中类型,四种标签,N*4种风格(默认+metro_style+google_stylr+lv_style),更可以与图标/字体集组合,能满足大部分的按钮需求。</p>
<p>详情参看: <a href="xOne/buttons.html">buttons</a></p>
</section>
<section id="btn-group">
<h1>按钮组</h1>
<p>实现一组功能相关的按钮,如单选按钮组等</p>
<p>详情参看: <a href="xOne/buttons.html">buttons</a></p>
</section>
<section id="btn-dropdown">
<h1>按钮菜单</h1>
<p>由按钮组合实现的下拉菜单</p>
<p>详情参看: <a href="xOne/buttons.html">buttons</a></p>
</section>
<section id="form">
<h1>表单</h1>
<p>处理表单最头疼的事情莫过于N中不同的排版杂糅在一起,以致于对齐甚至都要单独个性化处理。</p>
<p>这里总结了两种尺寸下的四种常见form布局方式,支持混合使用,几乎统一了表单的各类布局实现。</p>
<p>详情参看: <a href="xOne/forms.html">forms</a></p>
</section>
<section id="nav">
<h1>导航</h1>
<p>顶部导航,侧栏导航等</p>
<p>详情参看: <a href="xOne/nav.html">Nav</a></p>
</section>
<section id="breadcrumb">
<h1>面包屑</h1>
<p>此处实现了最常用的三种面包屑导航</p>
<div class="docs-example">
<div class="crumbs">
<p>
<span>您当前所处的位置:</span>
<a href="../">首页</a> >
<a href="../module.php">组件</a> >
面包屑
</p>
</div>
</div>
<pre class="prettyprint linenums">
<div class="crumbs">
<p>
<span>您当前所处的位置:</span>
<a href="../">首页</a> &gt;
<a href="../module.php">组件</a> &gt;
面包屑
</p>
</div>
</pre>
<h4>面包屑的作用</h4>
<ul>
<li>让用户了解当前所处位置,以及当前页面在整个网站中的位置。</li>
<li>提供返回各个层级的快速入口,方便用户操作。</li>
<li>降低跳出率,面包屑路径会是一个诱惑首次访问者在进入一个页面后去浏览这个网站的非常好的方法。</li>
<li>面包屑有利于网站内链的建设,用面包屑大大增加了网站的内部连接,提高用户体验。</li>
</ul>
</section>
<section id="paging">
<h1>分页</h1>
<p>实现功能完备的分页组件,扩展辅助js时可实现前端分页。</p>
<p>事实上一个网站也许只有一两种风格的分页模块,下面列举两种尺寸,两种风格的分页布局供大家参考</p>
<p>详见:<a href="xOne/paging.html">paging</a></p>
</section>
<section id="label">
<h1>标签标记</h1>
<h3>标签 <small>标签和注释文字</small></h3>
<table class="table-info table-full">
<thead>
<tr>
<th title="Labels">标签</th>
<th title="Markup">代码</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<span class="label" title="Default">默认</span>
</td>
<td>
<code><span class="label">默认</span></code>
</td>
</tr>
<tr>
<td>
<span class="label label-success" title="Success">成功</span>
</td>
<td>
<code><span class="label label-success">成功</span></code>
</td>
</tr>
<tr>
<td>
<span class="label label-warning" title="Warning">警告</span>
</td>
<td>
<code><span class="label label-warning">警告</span></code>
</td>
</tr>
<tr>
<td>
<span class="label label-important" title="Important">重要</span>
</td>
<td>
<code><span class="label label-important">重要</span></code>
</td>
</tr>
<tr>
<td>
<span class="label label-info" title="Info">信息</span>
</td>
<td>
<code><span class="label label-info">信息</span></code>
</td>
</tr>
<tr>
<td>
<span class="label label-inverse" title="Inverse">相反</span>
</td>
<td>
<code><span class="label label-inverse">相反</span></code>
</td>
</tr>
</tbody>
</table>
<h3 title="Badges">标记 <small>标记信息、未完成任务、未读信息等</small></h3>
<p>用来显示指示信息或标识某某数量(未完成任务、未读信息等)的简洁小组件。在CRM中往往用在任务处理列表或消息提醒上。</p>
<table class="table-info table-full">
<thead>
<tr>
<th title="Name">名称</th>
<th title="Example">例子</th>
<th title="Markup">代码</th>
</tr>
</thead>
<tbody>
<tr>
<td>
默认
</td>
<td>
<span class="badge">1</span>
</td>
<td>
<code><span class="badge">1</span></code>
</td>
</tr>
<tr>
<td>
成功
</td>
<td>
<span class="badge badge-success">2</span>
</td>
<td>
<code><span class="badge badge-success">2</span></code>
</td>
</tr>
<tr>
<td>
警告
</td>
<td>
<span class="badge badge-warning">4</span>
</td>
<td>
<code><span class="badge badge-warning">4</span></code>
</td>
</tr>
<tr>
<td>
重要
</td>
<td>
<span class="badge badge-important">6</span>
</td>
<td>
<code><span class="badge badge-important">6</span></code>
</td>
</tr>
<tr>
<td>
信息
</td>
<td>
<span class="badge badge-info">8</span>
</td>
<td>
<code><span class="badge badge-info">8</span></code>
</td>
</tr>
<tr>
<td>
相反
</td>
<td>
<span class="badge badge-inverse">10</span>
</td>
<td>
<code><span class="badge badge-inverse">10</span></code>
</td>
</tr>
</tbody>
</table>
<h3>tags标签 <small>依赖<a href="xOne/less/tags.css">tags.css</a></small></h3>
<div class="docs-example">
<h4>Intelligent son <small>聪明的儿子</small></h4>
<p>
One day, the father lets eight year-old son send a <a href="###" class="tag">letter</a>, the son took the letter , the father then remembered <a class="tag tag-blue" href="###">didn't</a> write the address and addressee's name on the envelope. <br>
After the son comes back, the father asks him: "You have <a class="tag tag-red" href="###">thrown</a> the letter in the mail box?" <br>
"Certainly" <br>
"You have not seen on the envelope not to write the address and the addressee name?" <br>
"I certainly saw <span class="tag">nothing</span> written on the envelope." <br>
"Then why you didn't take it back?" <br>
"I also thought that you do not write the address and the addressee, is for does not want to let me know that you do send the letter to who!"
</p>
<p>之乎者也,<a href="###" class="tag tag-blue">如果</a>用的是中文呢?来点<a href="###" class="tag tag-green">English</a>混排一下。</p>
<p class="f12"><span class="tag tag-blue">来个</span>小字体版的:之乎者也,<a href="###" class="tag">如果</a>用的是中文呢?来点<a href="###" class="tag tag-red">English</a>混排一下。</p>
</div>
<h3>lvmama标签统一 <small>促销、返现、提示</small></h3>
<div class="docs-example f12">
<p>默认设置了margin:0 2px,保证连用标签的间距(换行会产生一个空格),使用时注意保持统一</p>
<h3>纯色标签 tags10* <small></small></h3>
<p><span class="tags101">文字</span>
<span class="tags101">多人多惠</span>
<span class="tags101">促销</span>
</p>
<p><span class="tags102">文字</span>
<span class="tags102">元旦</span>
<span class="tags102">国庆</span>
<span class="tags102">端午</span>
<span class="tags102">微旅游日</span>
<span class="tags102">中秋</span>
<span class="tags102">清明</span>
<span class="tags102">五一</span>
</p>
<p><span class="tags103">文字</span>
<span class="tags103">热卖</span><br>
</p>
<p><span class="tags104">文字</span>
<span class="tags104">新品</span><br>
</p>
<h3>促销标签 tags20*</h3>
<p>
<span class="tags201">促销</span>
<span class="tags201">信用卡促销</span>
<span class="tags201">多人促销</span>
<span class="tags201">早订惠</span>
<span class="tags201">招 行</span>
</p>
<h3>分类标签 tags30*</h3>
<p>
<span class="tags301">超级自由行</span>
<span class="tags301">超级自由行</span>
</p>
<p>
<span class="tags302">开心驴行</span>
<span class="tags302">开心驴行</span>
</p>
<h3>放到文字中看看效果:标题中 <span class="tags101">多人多惠</span><span class="tagsback"><em>折扣</em><i>7.9折</i></span><span class="tags301">超级自由行</span></h3>
<p>段落中:驴妈妈的<span class="tags101">多人多惠</span>、<span class="tags301">超级自由行</span>产品一直在<span class="tags103">热卖</span>,并且<span class="tags102">节假日</span>还时常发布<span class="tags104">新品</span>并伴随<span class="tags101">促销</span>活动<span class="tags302">开心驴行</span>,转发<span class="tags102">微博</span>还有好礼不断哦!</p>
<h3>返现类标签 <small>橙色</small></h3>
<p>
<span class="tagsback" tip-title="提示标题" tip-content="提示内容"><em>折扣</em><i>7.9折</i></span>
<span class="tagsback" tip-title="提示标题" tip-content="提示内容"><em>销量</em><i>1208</i></span>
<span class="tagsback" tip-title="提示标题" tip-content="提示内容"><em>返</em><i>5元</i></span>
<span class="tagsback" tip-title="提示标题" tip-content="提示内容"><em>折扣返现</em><i>20元</i></span>
<pre><span class="tagsback" tip-title="提示标题" tip-content="提示内容"><em>折扣</em><i>7.9折</i></span></pre>
</p>
<p><span class="tagsback tagblue" tip-title="提示标题" tip-content="提示内容"><em>送</em><i>积分100分</i></span></p>
<p>关于 tooltip ,参看 <a target="_blank" href="xOne/tooltip.html">tooltip 工具提醒</a></p>
<p>复杂标签测试: <span class="testtags" tip-title="提示标题" tip-content="提示内容"><em>折扣返现</em><i>20元</i></span></p>
</div>
<h3>轻松实现折叠效果</h3>
<p>当没有任何内容时,可以很方便的将标签和徽章折叠起来(通过CSS的 <code>:empty</code> 选择器)。<small>针对低版本浏览器需要js修复支持</small></p>
</section>
<section id="poptip">
<h1>poptip <small>提示层</small></h1>
<div class="docs-example">
<div class="ui-box">
Little Robert asked his mother for two cents. "What did you do with the money I gave you yesterday?" <br>
"I gave it to a poor old woman," he answered. <br>
"You're a good boy," said the mother proudly. "Here are two cents more. But why are you so interested in the old woman?" <br>
"She is the one who sells the candy."<br>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-10">
<em>◆</em>
<span>◆</span>
</div>
<a href="javascript:;" class="ui-poptip-close">×</a>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-10">
<em>◆</em>
<span>◆</span>
</div>
<a href="javascript:;" class="ui-poptip-close">×</a>
<div class="ui-poptip-content">
<div>我是内容。</div>
<div>我是内容我是内容我是内容。</div>
<div>
<a href="https://app.alipay.com/xxxx" target="_blank">现在使用</a>
</div>
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-10">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-2">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-11">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-1">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-5">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-7">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">
我是内容我是内容我是内容我是内容我是内容我是内容
</div>
</div>
</div>
</div>
<div class="ui-poptip ui-poptip-blue">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-10">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">我是内容我是内容我是内容我是内容我是内容我是内容</div>
</div>
</div>
</div>
<div class="ui-poptip ui-poptip-blue">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-5">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">我是内容我是内容我是内容我是内容我是内容我是内容</div>
</div>
</div>
</div>
<div class="ui-poptip ui-poptip-white">
<div class="ui-poptip-shadow">
<div class="ui-poptip-container">
<div class="ui-poptip-arrow ui-poptip-arrow-5">
<em>◆</em>
<span>◆</span>
</div>
<div class="ui-poptip-content">我是内容我是内容我是内容我是内容我是内容我是内容</div>
</div>
</div>
</div>
</div>
</section>
<section id="tiptext">
<h1>提示文本</h1>
<p>老版本 ICON 使用的图片,请参考 <a href="../cndocs/solutions/alerts.html">信息提示框</a></p>
<p><strong>提醒:</strong> 字体图标集虽已全兼容,但字体加载仍有延迟,有时会出现闪动,另外针对信息提示框的显示,表示字体图标不够精致,可设置两个方案,精致版的图标集,简单方便扩展的文字图标集。</p>
<p>带各类图标的提示文案,可带有提示箭头。以下摘自 AliceUI:</p>
<div class="docs-example">
<p class="ui-tiptext ui-tiptext-error">
<i class="ui-tiptext-icon iconfont" title="出错"></i>
错误提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-warning">
<i class="ui-tiptext-icon iconfont" title="警告"></i>
警告提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-stop">
<i class="ui-tiptext-icon iconfont" title="阻止"></i>
停止提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-success">
<i class="ui-tiptext-icon iconfont" title="成功"></i>
成功提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-question">
<i class="ui-tiptext-icon iconfont" title="疑问"></i>
帮助提醒:自行编辑,非系统消息
</p>
<p class="ui-tiptext ui-tiptext-wait">
<i class="ui-tiptext-icon iconfont" title="等待"></i>
等待提醒:自行编辑,非系统消息
</p>
</div>
<div class="docs-example">
<div class="ui-tiptext-container ui-tiptext-container-error">
<p class="ui-tiptext ui-tiptext-error">
<i class="ui-tiptext-icon iconfont" title="出错"></i>
错误提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-message">
<p class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</p>
<div class="ui-tiptext-close iconfont"></div>
</div>
<div class="ui-tiptext-container ui-tiptext-container-warning">
<p class="ui-tiptext ui-tiptext-warning">
<i class="ui-tiptext-icon iconfont" title="警告"></i>
警告提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-stop">
<p class="ui-tiptext ui-tiptext-stop">
<i class="ui-tiptext-icon iconfont" title="阻止"></i>
停止提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-success">
<p class="ui-tiptext ui-tiptext-success">
<i class="ui-tiptext-icon iconfont" title="成功"></i>
成功提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-question">
<p class="ui-tiptext ui-tiptext-question">
<i class="ui-tiptext-icon iconfont" title="疑问"></i>
帮助提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-wait">
<p class="ui-tiptext ui-tiptext-wait">
<i class="ui-tiptext-icon iconfont" title="等待"></i>
等待提醒:自行编辑,非系统消息
</p>
</div>
<span class="ui-tiptext-container ui-tiptext-container-message ib">
<span class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</span>
</span>
<div class="ui-tiptext-container ui-tiptext-container-message">
<div class="ui-tiptext-arrow ui-tiptext-arrowup">
<em>◆</em>
<span>◆</span>
</div>
<p class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-message">
<div class="ui-tiptext-arrow ui-tiptext-arrowdown">
<em>◆</em>
<span>◆</span>
</div>
<p class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</p>
</div>
<div class="ui-tiptext-container ui-tiptext-container-message">
<div class="ui-tiptext-arrow ui-tiptext-arrowleft">
<em>◆</em>
<span>◆</span>
</div>
<p class="ui-tiptext ui-tiptext-message">
<i class="ui-tiptext-icon iconfont" title="提示"></i>
消息提醒:自行编辑,非系统消息
</p>
</div>
</div>
</section>
<section id="tipbox">
<h1>提示框</h1>
<div class="docs-example">
<div class="ui-tipbox ui-tipbox-error">
<div class="ui-tipbox-icon">
<i class="iconfont" title="出错"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">错误标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-message">
<div class="ui-tipbox-icon">
<i class="iconfont" title="提示"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">提示标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-warning">
<div class="ui-tipbox-icon">
<i class="iconfont" title="警告"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">警告标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-stop">
<div class="ui-tipbox-icon">
<i class="iconfont" title="阻止"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">阻止标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-success">
<div class="ui-tipbox-icon">
<i class="iconfont" title="成功"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">成功标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-question">
<div class="ui-tipbox-icon">
<i class="iconfont" title="疑问"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">疑问标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
<div class="ui-tipbox ui-tipbox-wait">
<div class="ui-tipbox-icon">
<i class="iconfont" title="等待"></i>
</div>
<div class="ui-tipbox-content">
<h3 class="ui-tipbox-title">等待标题</h3>
<p class="ui-tipbox-explain">完成操作的一些说明。</p>
<p class="ui-tipbox-explain"><a href="#">查看详情</a> | <a href="#">返回首页</a></p>
</div>
</div>
</div>
</section>
<section id="progress">
<h1>进度条</h1>
<p>显示某操作进程进度</p>
</section>
<section id="media">
<h1>媒体对象</h1>
<p>图文混排等</p>
</section>
<section id="step">
<h1>步骤</h1>
<p>操作步骤的常用布局实现</p>
</section>
<section id="misc">
<h1>杂项</h1>
<p>消息墙等组件</p>
</section>
<?php include("common/comment.html");?>
</div> <!-- // div.main -->
</div>
<?php include("common/footer.html");?>
</body>
</html>