@lingxiteam/lcdp-ueditor-react 1.0.0-alpha.9 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/es/LcdpUeditor.js +64 -61
  2. package/es/const.js +4 -4
  3. package/es/defaultConfig.json +76 -76
  4. package/es/tools/UeditorResourceLoader.js +11 -16
  5. package/es/tools/filterHtmlNode.d.ts +5 -0
  6. package/es/tools/filterHtmlNode.js +41 -0
  7. package/es/tools/loadScript.js +5 -7
  8. package/es/type.d.ts +6 -0
  9. package/lib/LcdpUeditor.js +18 -8
  10. package/lib/defaultConfig.json +76 -76
  11. package/lib/tools/filterHtmlNode.d.ts +5 -0
  12. package/lib/tools/filterHtmlNode.js +61 -0
  13. package/lib/type.d.ts +6 -0
  14. package/package.json +35 -34
  15. package/ueditor-resource/dialogs/anchor/anchor.html +62 -62
  16. package/ueditor-resource/dialogs/attachment/attachment.css +716 -716
  17. package/ueditor-resource/dialogs/attachment/attachment.html +61 -61
  18. package/ueditor-resource/dialogs/attachment/attachment.js +803 -803
  19. package/ueditor-resource/dialogs/audio/audio.css +879 -879
  20. package/ueditor-resource/dialogs/audio/audio.html +93 -93
  21. package/ueditor-resource/dialogs/audio/audio.js +815 -815
  22. package/ueditor-resource/dialogs/background/background.css +193 -193
  23. package/ueditor-resource/dialogs/background/background.html +59 -59
  24. package/ueditor-resource/dialogs/background/background.js +370 -370
  25. package/ueditor-resource/dialogs/contentimport/contentimport.html +176 -176
  26. package/ueditor-resource/dialogs/contentimport/contentimport.js +91 -91
  27. package/ueditor-resource/dialogs/emotion/emotion.css +129 -129
  28. package/ueditor-resource/dialogs/emotion/emotion.html +70 -70
  29. package/ueditor-resource/dialogs/emotion/emotion.js +186 -186
  30. package/ueditor-resource/dialogs/formula/formula.html +98 -98
  31. package/ueditor-resource/dialogs/formula/formula.js +147 -147
  32. package/ueditor-resource/dialogs/help/help.css +37 -37
  33. package/ueditor-resource/dialogs/help/help.html +82 -82
  34. package/ueditor-resource/dialogs/help/help.js +57 -57
  35. package/ueditor-resource/dialogs/image/image.css +768 -768
  36. package/ueditor-resource/dialogs/image/image.html +144 -144
  37. package/ueditor-resource/dialogs/image/image.js +1060 -1060
  38. package/ueditor-resource/dialogs/insertframe/insertframe.html +135 -135
  39. package/ueditor-resource/dialogs/internal.js +81 -81
  40. package/ueditor-resource/dialogs/link/link.html +148 -148
  41. package/ueditor-resource/dialogs/preview/preview.html +45 -45
  42. package/ueditor-resource/dialogs/scrawl/scrawl.css +324 -324
  43. package/ueditor-resource/dialogs/scrawl/scrawl.html +95 -95
  44. package/ueditor-resource/dialogs/scrawl/scrawl.js +682 -682
  45. package/ueditor-resource/dialogs/searchreplace/searchreplace.html +144 -144
  46. package/ueditor-resource/dialogs/searchreplace/searchreplace.js +174 -174
  47. package/ueditor-resource/dialogs/spechars/spechars.html +42 -42
  48. package/ueditor-resource/dialogs/spechars/spechars.js +86 -86
  49. package/ueditor-resource/dialogs/table/edittable.css +85 -85
  50. package/ueditor-resource/dialogs/table/edittable.html +69 -69
  51. package/ueditor-resource/dialogs/table/edittable.js +241 -241
  52. package/ueditor-resource/dialogs/table/edittd.html +62 -62
  53. package/ueditor-resource/dialogs/table/edittip.html +33 -33
  54. package/ueditor-resource/dialogs/template/config.js +42 -42
  55. package/ueditor-resource/dialogs/template/template.css +99 -99
  56. package/ueditor-resource/dialogs/template/template.html +26 -26
  57. package/ueditor-resource/dialogs/template/template.js +53 -53
  58. package/ueditor-resource/dialogs/video/video.css +909 -909
  59. package/ueditor-resource/dialogs/video/video.html +114 -114
  60. package/ueditor-resource/dialogs/video/video.js +867 -867
  61. package/ueditor-resource/dialogs/wordimage/wordimage.html +221 -221
  62. package/ueditor-resource/dialogs/wordimage/wordimage.js +93 -93
  63. package/ueditor-resource/lang/en/en.js +686 -686
  64. package/ueditor-resource/lang/zh-cn/zh-cn.js +748 -748
  65. package/ueditor-resource/lang/zh-tw/zh-tw.js +748 -748
  66. package/ueditor-resource/plugins/demo/demo.js +3 -3
  67. package/ueditor-resource/themes/default/css/ueditor.css +2148 -2148
  68. package/ueditor-resource/themes/default/dialog.css +17 -17
  69. package/ueditor-resource/themes/default/dialogbase.css +132 -132
  70. package/ueditor-resource/themes/default/exts/ai.svg +12 -12
  71. package/ueditor-resource/themes/default/exts/apk.svg +12 -12
  72. package/ueditor-resource/themes/default/exts/chm.svg +12 -12
  73. package/ueditor-resource/themes/default/exts/css.svg +12 -12
  74. package/ueditor-resource/themes/default/exts/doc.svg +22 -22
  75. package/ueditor-resource/themes/default/exts/docx.svg +22 -22
  76. package/ueditor-resource/themes/default/exts/dwg.svg +16 -16
  77. package/ueditor-resource/themes/default/exts/folder.svg +3 -3
  78. package/ueditor-resource/themes/default/exts/gif.svg +14 -14
  79. package/ueditor-resource/themes/default/exts/html.svg +12 -12
  80. package/ueditor-resource/themes/default/exts/jpeg.svg +14 -14
  81. package/ueditor-resource/themes/default/exts/jpg.svg +14 -14
  82. package/ueditor-resource/themes/default/exts/log.svg +12 -12
  83. package/ueditor-resource/themes/default/exts/mp3.svg +14 -14
  84. package/ueditor-resource/themes/default/exts/mp4.svg +12 -12
  85. package/ueditor-resource/themes/default/exts/pdf.svg +14 -14
  86. package/ueditor-resource/themes/default/exts/png.svg +14 -14
  87. package/ueditor-resource/themes/default/exts/ppt.svg +24 -24
  88. package/ueditor-resource/themes/default/exts/pptx.svg +24 -24
  89. package/ueditor-resource/themes/default/exts/psd.svg +12 -12
  90. package/ueditor-resource/themes/default/exts/rar.svg +12 -12
  91. package/ueditor-resource/themes/default/exts/svg.svg +12 -12
  92. package/ueditor-resource/themes/default/exts/torrent.svg +14 -14
  93. package/ueditor-resource/themes/default/exts/txt.svg +14 -14
  94. package/ueditor-resource/themes/default/exts/unknown.svg +12 -12
  95. package/ueditor-resource/themes/default/exts/xls.svg +25 -25
  96. package/ueditor-resource/themes/default/exts/xlsx.svg +25 -25
  97. package/ueditor-resource/themes/default/exts/zip.svg +12 -12
  98. package/ueditor-resource/themes/iframe.css +63 -63
  99. package/ueditor-resource/third-party/SyntaxHighlighter/shCore.js +3655 -3655
  100. package/ueditor-resource/third-party/clipboard/clipboard.js +752 -752
  101. package/ueditor-resource/third-party/codemirror/codemirror.css +106 -106
  102. package/ueditor-resource/third-party/codemirror/codemirror.js +3581 -3581
  103. package/ueditor-resource/third-party/jquery-3.5.1.js +1 -1
  104. package/ueditor-resource/third-party/jquery-3.5.1_1.js +4314 -4314
  105. package/ueditor-resource/third-party/webuploader/webuploader.css +88 -88
  106. package/ueditor-resource/third-party/webuploader/webuploader.js +3 -3
  107. package/ueditor-resource/third-party/zeroclipboard/ZeroClipboard.js +1255 -1255
  108. package/ueditor-resource/{lcdp-ueditor.all.js → ueditor.all.js} +5270 -5269
  109. package/ueditor-resource/ueditor.config.js +655 -655
  110. package/ueditor-resource/{lcdp-ueditor.parse.js → ueditor.parse.js} +13 -13
  111. package/ueditor-resource/index.html +0 -146
@@ -1,129 +1,129 @@
1
- .jd img {
2
- background: transparent url(images/jxface2.gif?v=1.1) no-repeat scroll left top;
3
- cursor: pointer;
4
- width: 35px;
5
- height: 35px;
6
- display: block;
7
- }
8
-
9
- .pp img {
10
- background: transparent url(images/fface.gif?v=1.1) no-repeat scroll left top;
11
- cursor: pointer;
12
- width: 25px;
13
- height: 25px;
14
- display: block;
15
- }
16
-
17
- .ldw img {
18
- background: transparent url(images/wface.gif?v=1.1) no-repeat scroll left top;
19
- cursor: pointer;
20
- width: 35px;
21
- height: 35px;
22
- display: block;
23
- }
24
-
25
- .tsj img {
26
- background: transparent url(images/tface.gif?v=1.1) no-repeat scroll left top;
27
- cursor: pointer;
28
- width: 35px;
29
- height: 35px;
30
- display: block;
31
- }
32
-
33
- .cat img {
34
- background: transparent url(images/cface.gif?v=1.1) no-repeat scroll left top;
35
- cursor: pointer;
36
- width: 35px;
37
- height: 35px;
38
- display: block;
39
- }
40
-
41
- .bb img {
42
- background: transparent url(images/bface.gif?v=1.1) no-repeat scroll left top;
43
- cursor: pointer;
44
- width: 35px;
45
- height: 35px;
46
- display: block;
47
- }
48
-
49
- .youa img {
50
- background: transparent url(images/yface.gif?v=1.1) no-repeat scroll left top;
51
- cursor: pointer;
52
- width: 35px;
53
- height: 35px;
54
- display: block;
55
- }
56
-
57
- .smileytable td {
58
- height: 37px;
59
- }
60
-
61
- #tabPanel {
62
- margin-left: 5px;
63
- overflow: hidden;
64
- }
65
-
66
- #tabContent {
67
- float: left;
68
- background: #FFFFFF;
69
- }
70
-
71
- #tabContent div {
72
- display: none;
73
- width: 480px;
74
- overflow: hidden;
75
- }
76
-
77
- #tabIconReview.show {
78
- left: 17px;
79
- display: block;
80
- }
81
-
82
- .menuFocus {
83
- background: #ACCD3C;
84
- }
85
-
86
- .menuDefault {
87
- background: #FFFFFF;
88
- }
89
-
90
- #tabIconReview {
91
- position: absolute;
92
- left: 406px;
93
- left: 398px \9;
94
- top: 41px;
95
- z-index: 65533;
96
- width: 90px;
97
- height: 76px;
98
- }
99
-
100
- img.review {
101
- width: 90px;
102
- height: 76px;
103
- border: 2px solid #9cb945;
104
- background: #FFFFFF;
105
- background-position: center;
106
- background-repeat: no-repeat;
107
- }
108
-
109
- .wrapper .tabbody {
110
- position: relative;
111
- float: left;
112
- clear: both;
113
- padding: 10px;
114
- width: 95%;
115
- }
116
-
117
- .tabbody table {
118
- width: 100%;
119
- }
120
-
121
- .tabbody td {
122
- border: 1px solid #BAC498;
123
- }
124
-
125
- .tabbody td span {
126
- display: block;
127
- zoom: 1;
128
- padding: 0 4px;
129
- }
1
+ .jd img {
2
+ background: transparent url(images/jxface2.gif?v=1.1) no-repeat scroll left top;
3
+ cursor: pointer;
4
+ width: 35px;
5
+ height: 35px;
6
+ display: block;
7
+ }
8
+
9
+ .pp img {
10
+ background: transparent url(images/fface.gif?v=1.1) no-repeat scroll left top;
11
+ cursor: pointer;
12
+ width: 25px;
13
+ height: 25px;
14
+ display: block;
15
+ }
16
+
17
+ .ldw img {
18
+ background: transparent url(images/wface.gif?v=1.1) no-repeat scroll left top;
19
+ cursor: pointer;
20
+ width: 35px;
21
+ height: 35px;
22
+ display: block;
23
+ }
24
+
25
+ .tsj img {
26
+ background: transparent url(images/tface.gif?v=1.1) no-repeat scroll left top;
27
+ cursor: pointer;
28
+ width: 35px;
29
+ height: 35px;
30
+ display: block;
31
+ }
32
+
33
+ .cat img {
34
+ background: transparent url(images/cface.gif?v=1.1) no-repeat scroll left top;
35
+ cursor: pointer;
36
+ width: 35px;
37
+ height: 35px;
38
+ display: block;
39
+ }
40
+
41
+ .bb img {
42
+ background: transparent url(images/bface.gif?v=1.1) no-repeat scroll left top;
43
+ cursor: pointer;
44
+ width: 35px;
45
+ height: 35px;
46
+ display: block;
47
+ }
48
+
49
+ .youa img {
50
+ background: transparent url(images/yface.gif?v=1.1) no-repeat scroll left top;
51
+ cursor: pointer;
52
+ width: 35px;
53
+ height: 35px;
54
+ display: block;
55
+ }
56
+
57
+ .smileytable td {
58
+ height: 37px;
59
+ }
60
+
61
+ #tabPanel {
62
+ margin-left: 5px;
63
+ overflow: hidden;
64
+ }
65
+
66
+ #tabContent {
67
+ float: left;
68
+ background: #FFFFFF;
69
+ }
70
+
71
+ #tabContent div {
72
+ display: none;
73
+ width: 480px;
74
+ overflow: hidden;
75
+ }
76
+
77
+ #tabIconReview.show {
78
+ left: 17px;
79
+ display: block;
80
+ }
81
+
82
+ .menuFocus {
83
+ background: #ACCD3C;
84
+ }
85
+
86
+ .menuDefault {
87
+ background: #FFFFFF;
88
+ }
89
+
90
+ #tabIconReview {
91
+ position: absolute;
92
+ left: 406px;
93
+ left: 398px \9;
94
+ top: 41px;
95
+ z-index: 65533;
96
+ width: 90px;
97
+ height: 76px;
98
+ }
99
+
100
+ img.review {
101
+ width: 90px;
102
+ height: 76px;
103
+ border: 2px solid #9cb945;
104
+ background: #FFFFFF;
105
+ background-position: center;
106
+ background-repeat: no-repeat;
107
+ }
108
+
109
+ .wrapper .tabbody {
110
+ position: relative;
111
+ float: left;
112
+ clear: both;
113
+ padding: 10px;
114
+ width: 95%;
115
+ }
116
+
117
+ .tabbody table {
118
+ width: 100%;
119
+ }
120
+
121
+ .tabbody td {
122
+ border: 1px solid #BAC498;
123
+ }
124
+
125
+ .tabbody td span {
126
+ display: block;
127
+ zoom: 1;
128
+ padding: 0 4px;
129
+ }
@@ -1,70 +1,70 @@
1
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
2
- <html xmlns="http://www.w3.org/1999/xhtml">
3
- <head>
4
- <title></title>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
6
- <meta name="robots" content="noindex, nofollow"/>
7
- <script type="text/javascript" src="../internal.js?32939b8e"></script>
8
- <link rel="stylesheet" type="text/css" href="emotion.css?756c9678">
9
- </head>
10
- <body>
11
- <div id="tabPanel" class="wrapper">
12
- <div id="tabHeads" class="tabhead">
13
- <span><var id="lang_input_choice"></var></span>
14
- <span><var id="lang_input_Tuzki"></var></span>
15
- <span><var id="lang_input_lvdouwa"></var></span>
16
- <span><var id="lang_input_BOBO"></var></span>
17
- <span><var id="lang_input_babyCat"></var></span>
18
- <span><var id="lang_input_bubble"></var></span>
19
- <span><var id="lang_input_youa"></var></span>
20
- </div>
21
- <div id="tabBodys" class="tabbody">
22
- <div id="tab0"></div>
23
- <div id="tab1"></div>
24
- <div id="tab2"></div>
25
- <div id="tab3"></div>
26
- <div id="tab4"></div>
27
- <div id="tab5"></div>
28
- <div id="tab6"></div>
29
- </div>
30
- </div>
31
- <div id="tabIconReview">
32
- <img id='faceReview' class='review' src="../../themes/default/images/spacer.gif"/>
33
- </div>
34
- <script type="text/javascript" src="emotion.js?8f5d7fd3"></script>
35
- <script type="text/javascript">
36
- var emotion = {
37
- tabNum: 7, //切换面板数量
38
- SmilmgName: {
39
- tab0: ['j_00', 84],
40
- tab1: ['t_00', 40],
41
- tab2: ['w_00', 52],
42
- tab3: ['B_00', 63],
43
- tab4: ['C_00', 20],
44
- tab5: ['i_f', 50],
45
- tab6: ['y_00', 40]
46
- }, //图片前缀名
47
- imageFolders: {
48
- tab0: 'jx2/',
49
- tab1: 'tsj/',
50
- tab2: 'ldw/',
51
- tab3: 'bobo/',
52
- tab4: 'babycat/',
53
- tab5: 'face/',
54
- tab6: 'youa/'
55
- }, //图片对应文件夹路径
56
- imageCss: {tab0: 'jd', tab1: 'tsj', tab2: 'ldw', tab3: 'bb', tab4: 'cat', tab5: 'pp', tab6: 'youa'}, //图片css类名
57
- imageCssOffset: {tab0: 35, tab1: 35, tab2: 35, tab3: 35, tab4: 35, tab5: 25, tab6: 35}, //图片偏移
58
- SmileyInfor: {
59
- tab0: ['Kiss', 'Love', 'Yeah', '啊!', '背扭', '顶', '抖胸', '88', '汗', '瞌睡', '鲁拉', '拍砖', '揉脸', '生日快乐', '大笑', '瀑布汗~', '惊讶', '臭美', '傻笑', '抛媚眼', '发怒', '打酱油', '俯卧撑', '气愤', '?', '吻', '怒', '胜利', 'HI', 'KISS', '不说', '不要', '扯花', '大心', '顶', '大惊', '飞吻', '鬼脸', '害羞', '口水', '狂哭', '来', '发财了', '吃西瓜', '套牢', '害羞', '庆祝', '我来了', '敲打', '晕了', '胜利', '臭美', '被打了', '贪吃', '迎接', '酷', '微笑', '亲吻', '调皮', '惊恐', '耍酷', '发火', '害羞', '汗水', '大哭', '', '加油', '困', '你NB', '晕倒', '开心', '偷笑', '大哭', '滴汗', '叹气', '超赞', '??', '飞吻', '天使', '撒花', '生气', '被砸', '吓傻', '随意吐'],
60
- tab1: ['Kiss', 'Love', 'Yeah', '啊!', '背扭', '顶', '抖胸', '88', '汗', '瞌睡', '鲁拉', '拍砖', '揉脸', '生日快乐', '摊手', '睡觉', '瘫坐', '无聊', '星星闪', '旋转', '也不行', '郁闷', '正Music', '抓墙', '撞墙至死', '歪头', '戳眼', '飘过', '互相拍砖', '砍死你', '扔桌子', '少林寺', '什么?', '转头', '我爱牛奶', '我踢', '摇晃', '晕厥', '在笼子里', '震荡'],
61
- tab2: ['大笑', '瀑布汗~', '惊讶', '臭美', '傻笑', '抛媚眼', '发怒', '我错了', 'money', '气愤', '挑逗', '吻', '怒', '胜利', '委屈', '受伤', '说啥呢?', '闭嘴', '不', '逗你玩儿', '飞吻', '眩晕', '魔法', '我来了', '睡了', '我打', '闭嘴', '打', '打晕了', '刷牙', '爆揍', '炸弹', '倒立', '刮胡子', '邪恶的笑', '不要不要', '爱恋中', '放大仔细看', '偷窥', '超高兴', '晕', '松口气', '我跑', '享受', '修养', '哭', '汗', '啊~', '热烈欢迎', '打酱油', '俯卧撑', '?'],
62
- tab3: ['HI', 'KISS', '不说', '不要', '扯花', '大心', '顶', '大惊', '飞吻', '鬼脸', '害羞', '口水', '狂哭', '来', '泪眼', '流泪', '生气', '吐舌', '喜欢', '旋转', '再见', '抓狂', '汗', '鄙视', '拜', '吐血', '嘘', '打人', '蹦跳', '变脸', '扯肉', '吃To', '吃花', '吹泡泡糖', '大变身', '飞天舞', '回眸', '可怜', '猛抽', '泡泡', '苹果', '亲', '', '骚舞', '烧香', '睡', '套娃娃', '捅捅', '舞倒', '西红柿', '爱慕', '摇', '摇摆', '杂耍', '招财', '被殴', '被球闷', '大惊', '理想', '欧打', '呕吐', '碎', '吐痰'],
63
- tab4: ['发财了', '吃西瓜', '套牢', '害羞', '庆祝', '我来了', '敲打', '晕了', '胜利', '臭美', '被打了', '贪吃', '迎接', '酷', '顶', '幸运', '爱心', '躲', '送花', '选择'],
64
- tab5: ['微笑', '亲吻', '调皮', '惊讶', '耍酷', '发火', '害羞', '汗水', '大哭', '得意', '鄙视', '困', '夸奖', '晕倒', '疑问', '媒婆', '狂吐', '青蛙', '发愁', '亲吻', '', '爱心', '心碎', '玫瑰', '礼物', '哭', '奸笑', '可爱', '得意', '呲牙', '暴汗', '楚楚可怜', '困', '哭', '生气', '惊讶', '口水', '彩虹', '夜空', '太阳', '钱钱', '灯泡', '咖啡', '蛋糕', '音乐', '爱', '胜利', '赞', '鄙视', 'OK'],
65
- tab6: ['男兜', '女兜', '开心', '乖乖', '偷笑', '大笑', '抽泣', '大哭', '无奈', '滴汗', '叹气', '狂晕', '委屈', '超赞', '??', '疑问', '飞吻', '天使', '撒花', '生气', '被砸', '口水', '泪奔', '吓傻', '吐舌头', '点头', '随意吐', '旋转', '困困', '鄙视', '狂顶', '篮球', '再见', '欢迎光临', '恭喜发财', '稍等', '我在线', '恕不议价', '库房有货', '货在路上']
66
- }
67
- };
68
- </script>
69
- </body>
70
- </html>
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title></title>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
6
+ <meta name="robots" content="noindex, nofollow"/>
7
+ <script type="text/javascript" src="../internal.js?aea0c61c"></script>
8
+ <link rel="stylesheet" type="text/css" href="emotion.css?d5b42328">
9
+ </head>
10
+ <body>
11
+ <div id="tabPanel" class="wrapper">
12
+ <div id="tabHeads" class="tabhead">
13
+ <span><var id="lang_input_choice"></var></span>
14
+ <span><var id="lang_input_Tuzki"></var></span>
15
+ <span><var id="lang_input_lvdouwa"></var></span>
16
+ <span><var id="lang_input_BOBO"></var></span>
17
+ <span><var id="lang_input_babyCat"></var></span>
18
+ <span><var id="lang_input_bubble"></var></span>
19
+ <span><var id="lang_input_youa"></var></span>
20
+ </div>
21
+ <div id="tabBodys" class="tabbody">
22
+ <div id="tab0"></div>
23
+ <div id="tab1"></div>
24
+ <div id="tab2"></div>
25
+ <div id="tab3"></div>
26
+ <div id="tab4"></div>
27
+ <div id="tab5"></div>
28
+ <div id="tab6"></div>
29
+ </div>
30
+ </div>
31
+ <div id="tabIconReview">
32
+ <img id='faceReview' class='review' src="../../themes/default/images/spacer.gif"/>
33
+ </div>
34
+ <script type="text/javascript" src="emotion.js?61027075"></script>
35
+ <script type="text/javascript">
36
+ var emotion = {
37
+ tabNum: 7, //切换面板数量
38
+ SmilmgName: {
39
+ tab0: ['j_00', 84],
40
+ tab1: ['t_00', 40],
41
+ tab2: ['w_00', 52],
42
+ tab3: ['B_00', 63],
43
+ tab4: ['C_00', 20],
44
+ tab5: ['i_f', 50],
45
+ tab6: ['y_00', 40]
46
+ }, //图片前缀名
47
+ imageFolders: {
48
+ tab0: 'jx2/',
49
+ tab1: 'tsj/',
50
+ tab2: 'ldw/',
51
+ tab3: 'bobo/',
52
+ tab4: 'babycat/',
53
+ tab5: 'face/',
54
+ tab6: 'youa/'
55
+ }, //图片对应文件夹路径
56
+ imageCss: {tab0: 'jd', tab1: 'tsj', tab2: 'ldw', tab3: 'bb', tab4: 'cat', tab5: 'pp', tab6: 'youa'}, //图片css类名
57
+ imageCssOffset: {tab0: 35, tab1: 35, tab2: 35, tab3: 35, tab4: 35, tab5: 25, tab6: 35}, //图片偏移
58
+ SmileyInfor: {
59
+ tab0: ['Kiss', 'Love', 'Yeah', '啊!', '背扭', '顶', '抖胸', '88', '汗', '瞌睡', '鲁拉', '拍砖', '揉脸', '生日快乐', '大笑', '瀑布汗~', '惊讶', '臭美', '傻笑', '抛媚眼', '发怒', '打酱油', '俯卧撑', '气愤', '?', '吻', '怒', '胜利', 'HI', 'KISS', '不说', '不要', '扯花', '大心', '顶', '大惊', '飞吻', '鬼脸', '害羞', '口水', '狂哭', '来', '发财了', '吃西瓜', '套牢', '害羞', '庆祝', '我来了', '敲打', '晕了', '胜利', '臭美', '被打了', '贪吃', '迎接', '酷', '微笑', '亲吻', '调皮', '惊恐', '耍酷', '发火', '害羞', '汗水', '大哭', '', '加油', '困', '你NB', '晕倒', '开心', '偷笑', '大哭', '滴汗', '叹气', '超赞', '??', '飞吻', '天使', '撒花', '生气', '被砸', '吓傻', '随意吐'],
60
+ tab1: ['Kiss', 'Love', 'Yeah', '啊!', '背扭', '顶', '抖胸', '88', '汗', '瞌睡', '鲁拉', '拍砖', '揉脸', '生日快乐', '摊手', '睡觉', '瘫坐', '无聊', '星星闪', '旋转', '也不行', '郁闷', '正Music', '抓墙', '撞墙至死', '歪头', '戳眼', '飘过', '互相拍砖', '砍死你', '扔桌子', '少林寺', '什么?', '转头', '我爱牛奶', '我踢', '摇晃', '晕厥', '在笼子里', '震荡'],
61
+ tab2: ['大笑', '瀑布汗~', '惊讶', '臭美', '傻笑', '抛媚眼', '发怒', '我错了', 'money', '气愤', '挑逗', '吻', '怒', '胜利', '委屈', '受伤', '说啥呢?', '闭嘴', '不', '逗你玩儿', '飞吻', '眩晕', '魔法', '我来了', '睡了', '我打', '闭嘴', '打', '打晕了', '刷牙', '爆揍', '炸弹', '倒立', '刮胡子', '邪恶的笑', '不要不要', '爱恋中', '放大仔细看', '偷窥', '超高兴', '晕', '松口气', '我跑', '享受', '修养', '哭', '汗', '啊~', '热烈欢迎', '打酱油', '俯卧撑', '?'],
62
+ tab3: ['HI', 'KISS', '不说', '不要', '扯花', '大心', '顶', '大惊', '飞吻', '鬼脸', '害羞', '口水', '狂哭', '来', '泪眼', '流泪', '生气', '吐舌', '喜欢', '旋转', '再见', '抓狂', '汗', '鄙视', '拜', '吐血', '嘘', '打人', '蹦跳', '变脸', '扯肉', '吃To', '吃花', '吹泡泡糖', '大变身', '飞天舞', '回眸', '可怜', '猛抽', '泡泡', '苹果', '亲', '', '骚舞', '烧香', '睡', '套娃娃', '捅捅', '舞倒', '西红柿', '爱慕', '摇', '摇摆', '杂耍', '招财', '被殴', '被球闷', '大惊', '理想', '欧打', '呕吐', '碎', '吐痰'],
63
+ tab4: ['发财了', '吃西瓜', '套牢', '害羞', '庆祝', '我来了', '敲打', '晕了', '胜利', '臭美', '被打了', '贪吃', '迎接', '酷', '顶', '幸运', '爱心', '躲', '送花', '选择'],
64
+ tab5: ['微笑', '亲吻', '调皮', '惊讶', '耍酷', '发火', '害羞', '汗水', '大哭', '得意', '鄙视', '困', '夸奖', '晕倒', '疑问', '媒婆', '狂吐', '青蛙', '发愁', '亲吻', '', '爱心', '心碎', '玫瑰', '礼物', '哭', '奸笑', '可爱', '得意', '呲牙', '暴汗', '楚楚可怜', '困', '哭', '生气', '惊讶', '口水', '彩虹', '夜空', '太阳', '钱钱', '灯泡', '咖啡', '蛋糕', '音乐', '爱', '胜利', '赞', '鄙视', 'OK'],
65
+ tab6: ['男兜', '女兜', '开心', '乖乖', '偷笑', '大笑', '抽泣', '大哭', '无奈', '滴汗', '叹气', '狂晕', '委屈', '超赞', '??', '疑问', '飞吻', '天使', '撒花', '生气', '被砸', '口水', '泪奔', '吓傻', '吐舌头', '点头', '随意吐', '旋转', '困困', '鄙视', '狂顶', '篮球', '再见', '欢迎光临', '恭喜发财', '稍等', '我在线', '恕不议价', '库房有货', '货在路上']
66
+ }
67
+ };
68
+ </script>
69
+ </body>
70
+ </html>