-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1183 lines (1143 loc) · 33.2 KB
/
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
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
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>在线聊天室</title>
<script src="js/jquery.min.js"></script>
<style>
body {
/*background:url(images/yuyin_bg.png) no-repeat;
*/
background:#eee;
background-size:100%;
font-family:"微软雅黑";
}
@media all and (min-width:100%) {
body,html,.wenwen-footer,.speak_window {
width:100%!important;
margin:0 auto
}
.speak_window,.wenwen-footer {
left:50%!important;
margin-left:-320px
}
}input,button {
outline:none;
}
.wenwen-footer {
width:100%;
position:fixed;
bottom:-5px;
left:0;
background:#fff;
padding:10px;
border-top:solid 1px #ddd;
box-sizing:border-box;
display:flex;
justify-content:space-around;
align-items:center;
padding-top:1%;
}
.wenwen_btn,.wenwen_help {
width:15%;
text-align:center;
}
.wenwen_btn img,.wenwen_help img {
height:30px;
}
.wenwen_text {
height:40px;
border-bottom:solid 1px #C3BFBF;
box-sizing:border-box;
width:66%;
text-align:center;
overflow:hidden;
margin-left:2%;
}
.circle-button {
padding:0 5px;
}
.wenwen_text .circle-button {
font-size:14px;
color:#666;
line-height:38px;
}
.write_box {
width:100%;
height:40px;
line-height:40px;
}
.write_box input {
height:40px;
padding:0 5px;
line-height:40px;
width:100%;
box-sizing:border-box;
border:0;
font-family:"微软雅黑";
font-size:15px;
}
.wenwen_help button {
width:95%;
background:#8CCC49;
color:#fff;
border-radius:5px;
border:0;
height:30px;
display:block;
font-family:"微软雅黑";
}
#wenwen {
height:100%;
}
.speak_window {
overflow-y:scroll;
height:100%;
width:100%;
padding-top:32px;
position:fixed;
top:0;
left:0;
}
.speak_box {
margin-bottom:70px;
padding:10px;
}
.question,.answer {
margin-bottom:1rem;
}
.question {
text-align:right;
}
.question>div {
display:inline-block;
}
.left {
float:left;
}
.right {
float:right;
}
.clear {
clear:both;
}
.heard_img {
height:44px;
width:44px;
border-radius:3px;
overflow:hidden;
background:#ddd;
}
.heard_img img {
width:100%;
height:100%
}
.question_text,.answer_text {
box-sizing:border-box;
position:relative;
display:table-cell;
min-height:45px;
}
.question_text {
padding-right:12px;
}
.answer_text {
padding-left:12px;
}
.question_text p {
border-radius:5px;
padding:.5rem;
margin:0;
font-size:14px;
line-height:20px;
box-sizing:border-box;
vertical-align:middle;
display:table-cell;
word-wrap:break-word;
max-width:65vw;
min-width:10vw;
box-shadow:-1px 1px 1px 1px rgba(0,0,0,.1);
}
.answer_text p {
border-radius:5px;
padding:.5rem;
margin:0;
font-size:14px;
line-height:20px;
box-sizing:border-box;
vertical-align:middle;
display:table-cell;
word-wrap:break-word;
max-width:65vw;
min-width:10vw;
box-shadow:1px 1px 1px 1px rgba(0,0,0,.1);
}
.answer_text p {
background:#fff;
}
.question_text p {
background:#8CCC49;
color:#000;
text-align:left;
}
.question_text i,.answer_text i {
width:0;
height:0;
border-top:5px solid transparent;
border-bottom:5px solid transparent;
position:absolute;
top:14px;
}
.answer_text i {
border-right:6px solid #fff;
left:6px;
}
.question_text i {
border-left:6px solid #8CCC49;
right:6px;
}
.answer_text p a {
color:#42929d;
display:inline-block;
}
audio {
display:none;
}
.saying {
position:fixed;
bottom:30%;
left:50%;
width:120px;
margin-left:-60px;
display:none;
}
.saying img {
width:100%;
}
.write_list {
position:absolute;
left:0;
width:100%;
background:#fff;
border-top:solid 1px #ddd;
padding:5px;
line-height:30px;
}
/*表情区域开始*/
#ems{position:absolute; z-index:5; display:none; top:0px; left:0px; max-width:230px; background-color:#F1F1F1; border:solid 1px #CCC; padding:5px;}
#ems img{width:44px; height:44px; border:solid 1px #FFF; cursor:pointer;}
#ems img:hover,#ems img:active{border-color:#A4B7E3;}
#ems a{color:#069; border-radius:2px; display:inline-block; margin:2px 5px; padding:1px 8px; text-decoration:none; background-color:#D5DFFD;}
#ems a:hover,#ems a:active,#ems a.ck{color:#FFF; background-color:#069;}
.tc{text-align:center; margin-top:5px;}
/*表情区域结束*/
* {
margin:0;
padding:0;
list-style:none;
}
.header {
position:fixed;
right:0;
left:0;
z-index:100;
height:32px;
top:0;
padding:0;
background-color:#f7f7f8;
border-bottom:1px solid #e7e7e7;
-webkit-backface-visibility:hidden;
backface-visibility:hidden;
}
.nav {
width:60%;
height:30px;
/*margin:0px auto;*/
padding:0;
float:left;
}
.nav p {
display:block;
padding-left:0px;
line-height:30px;
max-height:30px;
font-size:25px;
text-align:center;
border:1px solid #CCC;
margin:0 auto;
}
.set {
background-color:#f7f7f8;
}
.select {
background-color:gray;
}
.new {
margin:0 auto;
width:60%;
max-height:180px;
overflow-x:hidden;
overflow-y:scroll;
position:absolute;
border:1px solid #CCC;
padding-left:0px;
display:none;
}
/* for Chrome 不显示滚动栏*/
.new::-webkit-scrollbar {
display: none;
}
.nav ul li {
width:100%;
background:#CCC;
line-height:30px;
max-height:30px;
text-align:center;
padding:0px;
margin:0px;
list-style:none;
}
.nav ul li span{
max-width:100%;
line-height:30px;
max-height:30px;
font-size:25px;
margin:0 auto;
padding:0px;
}
.nav ul li:hover {
background:#069;
color:#FFF;
}
.nav ul .currentchat{
background:#069;
color:#FFF;
}
/*灰色图片类*/
.gray_img {
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
}
#overlay{
z-index: 9;
position:fixed;
display: none;
top:0;
left:0;
width: 100%;
height: 100%;
background-color: #333;
opacity:0.5;
}
.header_left{
width:20%;
height:30px;
/*margin:0px auto;*/
/*margin-top:-30px;*/
padding:0;
/*border:1px solid red;*/
background:blue;
float:left;
text-align:center;
font-size:25px;
}
#leftmenu{
}
.header_right{
width:20%;
height:30px;
/*margin:0px auto;*/
/*margin-top:-30px;*/
padding:0;
/*border:1px solid red;*/
background:red;
float:right;
text-align:center;
font-size:25px;
}
#rightmenu{
}
.header_menu{
button:0;
z-index:1000;
display:none;
background:#ccc;
font-size:12px;
text-align:center;
}
.header_menu a{
display:block;
height:80px;
min-width:20%;
padding:10px 8px;
color:#fff;
background:#272324;
font-size:1.2em;
text-decoration:none;
text-align:center;
}
</style>
</head>
<body>
<div id="ltian" class="speak_window">
<div id="overlay"></div>
<header class="header">
<div class="header_left">
功能
<div class="header_menu" id="leftmenu">
<ul>
<li><a href="javascript:;">功能0</a></li>
<li><a href="javascript:;">功能1</a></li>
<li><a href="javascript:;">功能2</a></li>
<li><a href="javascript:;">功能3</a></li>
</ul>
</div>
</div>
<div class="nav">
<p class="set">大家</p>
<ul id="us" class="new">
<!--
<li>大家</li>
<li><span style="background-image:url(http://q1.qlogo.cn/g?b=qq&nk=1141672741&s=100);background-repeat:no-repeat;background-position:3px 3px;background-size:25px 25px;padding-left:30px;">张三</span></li>
<li>阅读</li>
<li>李四</li>
<li>旅游</li>
<li>运动</li>
<li>宅</li>
<li>娱乐</li>
<li>新闻</li>
<li>广告</li>
-->
</ul>
</div>
<div class="header_right">
设置
<div class="header_menu" id="rightmenu">
<ul>
<li><a href="javascript:;" onclick="$('#speak_box').empty();">清除记录</a></li>
<li><a href="javascript:;" onClick="setCookie('qqnum','',365);location.reload();">重新进入</a></li>
<li><a href="javascript:;">设置2</a></li>
<li><a href="javascript:;">设置3</a></li>
</ul>
</div>
</div>
</header>
<div id="speak_box" class="speak_box">
<!--
<div class="answer">
<div class="heard_img left"><img src="/favicon.ico"></div>
<div class="answer_text">
<p><s>欢迎加入群聊!</s></p>
<i></i>
</div>
</div>
-->
</div>
<div class="saying">
<img src="images/welcome.gif">
</div>
<div class="wenwen-footer">
<img id="imgbq" src="sk/t.png" style="width: 30px;">
<div class="wenwen_text left">
<div class="write_box">
<input id="sendtext" type="text" class="left" placeholder="请输入要发送的内容">
</div>
</div>
<div class="wenwen_help right">
<button id="sendbtn" onclick="up_say()" class="right">发送</button>
</div>
</div>
<div id="ems"><p></p><p class="tc"></p></div>
<script src="js/a.js" type="text/javascript"></script>
<script type="text/javascript" src="js/iNotify.js"></script>
<script type="text/javascript">
function movemenu(pos){
var menuwidth = '20%'; // 边栏宽度
var menuspeed = 200; // 边栏滑出耗费时间
var $bdy = $('body');
var $container = $('.speak_window');
var $overlay = $('#overlay');
if(pos=='left'){
var $burger = $('#leftmenu');
var negwidth = "+"+menuwidth;
var poswidth = "-"+menuwidth;
var $menubtn = $('.header_left');
}else{
var $burger = $('#rightmenu');
var negwidth = "-"+menuwidth;
var poswidth = "+"+menuwidth;
var $menubtn = $('.header_right');
}
$menubtn.on('click',function(e){
if($bdy.hasClass('openmenu')) {
jsAnimateMenu('close');
} else {
jsAnimateMenu('open');
}
});
$overlay.on('click', function(e){
$menubtn.click();
if($bdy.hasClass('openmenu')) {
jsAnimateMenu('close');
}
});
function jsAnimateMenu(tog) {
if(tog == 'open') {
$overlay.show();
$burger.show();
$bdy.addClass('openmenu');
$container.animate({marginLeft: negwidth, marginRight: poswidth}, menuspeed);
$burger.animate({width:"100%"}, menuspeed);
$overlay.animate({right: poswidth}, menuspeed);
}
if(tog == 'close') {
$bdy.removeClass('openmenu');
$container.animate({marginLeft: "0", marginRight: "0"}, menuspeed);
$burger.animate({width: "0"}, menuspeed);
$overlay.animate({left: "0"}, menuspeed);
$overlay.hide();
$burger.hide();
}
}
}
movemenu('left');
movemenu('right');
$(function() {
$(".nav p").click(function() {
var ul = $(".new");
if (ul.css("display") == "none") {
ul.slideDown();
} else {
ul.slideUp();
}
$("#overlay").show();
});
$(".set").click(function() {
var _name = $(this).attr("name");
if ($("[name=" + _name + "]").length > 1) {
$("[name=" + _name + "]").removeClass("select");
$(this).addClass("select");
} else {
if ($(this).hasClass("select")) {
$(this).removeClass("select");
$("#overlay").hide();
} else {
$(this).addClass("select");
}
}
});
$(".nav li").click(function() {
var li = $(this).html();
$(".nav p").html(li);
$(".new").hide();
/*$(".set").css({background:'none'});*/
$("p").removeClass("select");
$("#overlay").hide();
});
$("#overlay").click(function() {
$(".new").hide();
/*$(".set").css({background:'none'});*/
$("p").removeClass("select");
$("#overlay").hide();
});
})
/************************/
var currenttitle=document.title;
var iN = new iNotify({
effect: 'flash',
interval: 500,
message:"有消息拉!",
audio:{
file: ['s/msg.mp4','s/msg.mp3','s/msg.wav']
},
notification:{
title:"通知!",
icon:"/favicon.ico",
body:'您来了一条新消息'
}
});
function inotifyTest(titleinfo,titlet,icont,bodyt){
var thissay=bodyt.replace(/<\/?.+?>/g,"").replace(/ /g,"");
//thissay=titlet+thissay;
//var audiourl='http://cache-a.oddcast.com/c_fs/7d90dcb103b470e7c466d931bb5f59fc.mp3?engine=3&language=10&voice=3&text='+encodeURIComponent(thissay)+'&useUTF8=1';//中文
//var audiourl='http://cache-a.oddcast.com/c_fs/bad902c02afc9718b7d0ef59f5678415.mp3?engine=3&language=1&voice=3&text='+encodeURIComponent(thissay)+'&useUTF8=1';//英文
//var audiourl='https://ai.baidu.com/aidemo?type=tns2&idx=1&tex='+encodeURIComponent(thissay)+'&cuid=baidu_speech_demo&cod=2&lan=zh&ctp=1&pdt=1&spd=5&per=3&vol=5&pit=5';//逍遥
//var audiourl='https://ai.baidu.com/aidemo?type=tns2&idx=1&tex='+encodeURIComponent(thissay)+'&cuid=baidu_speech_demo&cod=2&lan=zh&ctp=1&pdt=1&spd=5&per=4&vol=5&pit=5';//丫丫
var audiourl='https://ai.baidu.com/aidemo?type=tns2&idx=1&tex='+encodeURIComponent(thissay)+'&cuid=baidu_speech_demo&cod=2&lan=zh&ctp=1&pdt=1&spd=5&per=0&vol=5&pit=5';//女生
//var audiourl='https://ai.baidu.com/aidemo?type=tns2&idx=1&tex='+encodeURIComponent(thissay)+'&cuid=baidu_speech_demo&cod=2&lan=zh&ctp=1&pdt=1&spd=5&per=5&vol=5&pit=5';//男生
//iN.setFavicon(msgnum).setTitle(titleinfo).notify({
iN.setTitle(titleinfo).setURL(audiourl).notify({
title:titlet,
icon:icont,
body:bodyt
}).player()
}
function inotifyClear(){
//iN.faviconClear().setTitle();
iN.setTitle();
document.title=currenttitle;
}
</script>
<script>
function to_write() {
$('.wenwen_btn img').attr('src', 'images/yy_btn.png');
$('.wenwen_btn').attr('onclick', 'to_say()');
$('.write_box,.wenwen_help button').show();
$('.circle-button,.wenwen_help a').hide();
$('.write_box input').focus();
for_bottom();
}
function to_say() {
$('.write_list').remove();
$('.wenwen_btn img').attr('src', 'images/jp_btn.png');
$('.wenwen_btn').attr('onclick', 'to_write()');
$('.write_box,.wenwen_help button').hide();
$('.circle-button,.wenwen_help a').show();
}
var Bene = [
'你终于来啦,我找你N年了,去火星干什么了?我现在去冥王星,回头跟你说个事,别走开啊!',
'有事找我请大叫!',
'你要和我说话?你真的要和我说话?你确定自己想说吗?你一定非说不可吗?那你说吧,这是自动回复,反正我看不见',
'起床时想到你的微笑,洗脸时嗅到你的味道,上床前你是我的需要。真的不能离开你,我亲爱的??马桶',
'嘿,我知道一个能让我在走路的时候不被绷带绊倒的办法,你们想听么?',
'帅有个屁用!到头来还不是被卒吃掉!',
'如果你看到面前的阴影,别怕,那是因为你的背后有阳光。',
'付出就要赢得回报,这是永恒的真理,自古以来很少有人能突破它。然而,如果有人能够超越它的限制,付出而不求回报,那么他一定会得到得更多。',
'从前有个怪物,他一直在吃东西,却怎么也吃不饱。所以到最后,他把他自己也吃掉了! ',
'如果你受苦了,感谢生活,那是它给你的一份感觉;如果你受苦了,感谢上帝,说明你还活着。人们的灾祸往往成为他们的学问。',
'本人纯属虚构,如遇在线,实属见鬼!',
'就算你是一支狗尾巴草,也要把自己包装成一支有特色又有气质的狗尾巴草,合作的时候先夸大,之后再做实事。记住,你就是一支特立独行又优雅的狗尾巴草,千万别把自己说成玫瑰”。',
'我觉得最大的歧视就是怜悯,比如一个残疾的人或者生活很不幸的人,你对他越怜悯,这是对他最大的歧视,其实我们从来不怜悯悲伤,而是带着悲伤一块玩。',
'我的人生有A面也有B面,你的人生有S面也有B面。',
'生活有时就像被太监强奸一样??反抗是痛苦,不反抗还是痛苦!',
'我也是从石头里蹦出来的,为什么我不是猴子呢?',
'令我感到骄傲和自豪的是,至今为止,地球仍被我踩在脚下。 ',
'物价涨得太快,所以我在餐馆吃饭的时候都会先付钱。',
'以解决自己的问题为目标,这是一个实实在在的道理,正视自己的问题,设法解决它,这是成功的捷径。谁能塌下心来把目光凝集在一个个小漏洞、小障碍上,谁就先迈出了一大步。',
'真的要跟我聊天?想好了?不后悔了?真的不后悔了?',
'一个男人的价值,可以从他胡子的长度,以及……皮带的长度上看出来',
'如果1分钟内没答复,那么我在小便;如果5分钟内没答复,那么我在大便;如果30分钟内没答复,那么我没带纸。',
'你的眼睛眨一下,我就死去,你的眼睛再眨一下,我就活过来,你的眼睛不停地眨来眨去,于是我便死去活来!',
'你怎么点到这里来了啊!你点到鬼门关了还不快下线要不我都救不了你了,回去洗个澡烧柱香还能活三十年!',
'欠我的钱你什么时候还啊~~不还别吵我~~',
'很多人都说我是吸血鬼,但你看,其实我并不讨厌阳光,相反,我还经常在白天打架呢!',
'本人现在位置:WC,姿势:下蹲 脸部:抽搐 状态:用力中。。。。 ',
'本机已调成震动 ,小心说话 ,我机子子震坏了 ,看我扁你不!',
'你好.我去叫几个人,很快回来 。',
'单身的典型标志就是一个月流量套餐早没了,通话套餐还剩一大半。'
]
function up_say() {
return true;
$('.write_list').remove();
var text = $('.write_box input').val(),
str = '<div class="question">';
str += '<div class="heard_img right"><img src="/favicon.ico"/></div>';
str += '<div class="question_text clear"><p>' + text + '</p><i></i>';
str += '</div></div>';
if (text.trim() == '') {
//alert('请输入提问!');
$('.write_box input').val('');
$('.write_box input').focus();
} else {
$('.speak_box').append(str);
$('.write_box input').val('');
// $('.write_box input').focus();
$(".write_box input").blur();
autoWidth();
for_bottom();
setTimeout(function() {
var Benelen = Math.floor(Math.random() * 29);
var ans = '<div class="answer"><div class="heard_img left"><img src="http://www.jq22.com/img/cs/500x500-2.png"/></div>';
ans += '<div class="answer_text"><p>' + Bene[Benelen] + '</p><i></i>';
ans += '</div></div>';
$('.speak_box').append(ans);
for_bottom();
}, 1000);
}
}
var wen = document.getElementById('wenwen');
function _touch_start(event) {
event.preventDefault();
$('.wenwen_text').css('background', '#c1c1c1');
$('.wenwen_text span').css('color', '#fff');
$('.saying').show();
}
function _touch_end(event) {
event.preventDefault();
$('.wenwen_text').css('background', '#fff');
$('.wenwen_text .circle-button').css('color', '#666');
$('.saying').hide();
var str = '<div class="question">';
str += '<div class="heard_img right"><img src="images/dglvyou.jpg"/></div>';
str += '<div class="question_text clear"><p>不好意思,我听不清!</p><i></i>';
str += '</div></div>';
$('.speak_box').append(str);
for_bottom();
setTimeout(function() {
var ans = '<div class="answer"><div class="heard_img left"><img src="images/dglvyou.jpg"/></div>';
ans += '<div class="answer_text"><p>我不知道你在说什么?</p><i></i>';
ans += '</div></div>';
$('.speak_box').append(ans);
for_bottom();
}, 1000);
}
// wen.addEventListener("touchstart", _touch_start, false);
// wen.addEventListener("touchend", _touch_end, false);
function for_bottom() {
var speak_height = $('.speak_box').height();
$('.speak_box,.speak_window').animate({
scrollTop: speak_height
}, 500);
}
function autoWidth() {
$('.question_text').css('max-width', $('.question').width() - 60);
}
autoWidth();
/**websocket**/
function flicker(oBox){
var backupoBox=oBox.style.color;
var flickertimer = null; //定义时间器
var i = 0;
if(!$(oBox).hasClass("flickering")){
$(oBox).addClass("flickering");
}else{
return ;
}
clearInterval(flickertimer); //先清空时间器
oBox.onmousedown = function(){ //电脑端
clearInterval(flickertimer);
inotifyClear();//恢复inotify
oBox.style.color=backupoBox;
$(oBox).removeClass("flickering");
return ;
};
oBox.ontouchstart = function(){ //手机端
clearInterval(flickertimer);
inotifyClear();//恢复inotify
oBox.style.color=backupoBox;
$(oBox).removeClass("flickering");
return ;
};
flickertimer = setInterval(function () {
oBox.style.color = i++ % 2 ? "#08C" : "#F1F1F1"; // 控制闪烁
if(!$(oBox).hasClass("flickering")){
clearInterval(flickertimer);
inotifyClear();
oBox.style.color=backupoBox;
$(oBox).removeClass("flickering");
return ;
} //控制闪烁次数
}, 500 );
}
function unflicker(oBox){//去闪烁,原本有闪烁返回true,没有则返回false
if($(oBox).hasClass("flickering")){
$(oBox).removeClass("flickering");
return true;
}
return false;
}
function setCookie(c_name,value,expiredays){
var exdate=new Date();
exdate.setDate(exdate.getDate()+expiredays);
document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
function getCookie(c_name){
if(document.cookie.length>0){
c_start=document.cookie.indexOf(c_name + "=");
if (c_start!=-1){
c_start=c_start + c_name.length+1;
c_end=document.cookie.indexOf(";",c_start);
if (c_end==-1) c_end=document.cookie.length;
return unescape(document.cookie.substring(c_start,c_end));
}
}
return "";
}
(function(){
var key='all',mkey;
var users={};
var url='ws://118.89.102.104:3000';
var so=false,n=false;
var lus=A.$('us'),lct=A.$('ct');
var selfname="";
var onlinetag=false;
var onlinenum=0;
function getqqname(qq){
if(!isNaN(qq)&&qq>10000){
$.ajax({
type: "get",
url: "getqqname.php?qqnum="+qq,
async: false,
success: function(data){
if(data.length>0){
qqnum=qq;
qqname=data;
}else{
qqnum='';
qqname=randname;
alert('获取QQ昵称失败');
}
},
error: function(){
qqnum='';
qqname=randname;
alert('获取QQ昵称失败');
}
});
}else{
qqnum='';
qqname=randname;
alert('QQ号错误,获取QQ昵称失败');
}
}
var qqnum=getCookie('qqnum');
var qqname=getCookie('qqname');
var randname='游客';
function st(){
if(qqname!=null&&qqname!=""&&qqnum!=null&&qqnum!=""){
n=qqname;
}else{
n=prompt('用QQ号登陆聊天室(故障中)\n或直接输入昵称登陆聊天室(推荐)\n或直接确定获取随机昵称登录聊天室:',qqname);
if(n.trim()==""){
n=randname;
}else if(isNaN(n)){
//不是数字
}else{
getqqname(n);
n=qqname;
if(qqnum!=''){
n=prompt('是否使用别的昵称:',n);
if(!n)n=qqname;
if(n.trim()==""){
n=randname;
}
}
}
}
n=n.substr(0,16);
qqname=n;//保存昵称
n=esc(n);
if(!n){
return ;
}
setCookie('qqname',qqname,365);
setCookie('qqnum',qqnum,365);
so=new WebSocket(url);
so.onopen=function(){
if(so.readyState==1){
so.send('type=add&ming='+n+'&qqnum='+qqnum);
}
}
$('.write_box input').focus();
so.onclose=function(){
so=false;
onlinetag=false;
onlinenum=0;
iN.setFavicon(onlinenum);
document.title='呀,掉线了';
if(confirm("您已退出聊天室,是否重新进入?")){
window.location.reload();
}
}
so.onmessage=function(msg){
eval('var da='+msg.data);
var obj=false,c=false;
if(da.type=='add'){
++onlinenum;
iN.setFavicon(onlinenum);
da.name=justreplace(da.name);
da.code=justreplace(da.code);
da.time=justreplace(da.time);
if(da.qqnum&&da.qqnum!=''){
qqheadsrc='http://q1.qlogo.cn/g?b=qq&nk='+da.qqnum+'&s=100';
}else{
qqheadsrc='images/heisenberg.png';
}
//var obj=A.$$('<p style="background-image:url('+qqheadsrc+');background-repeat:no-repeat;background-position:3px 3px;background-size:20px 20px;padding-left:25px;" alt="qq:'+da.qqnum+'" title="qq:'+da.qqnum+'">'+da.name+'</p>');
var obj=A.$$('<li><span style="background-image:url('+qqheadsrc+');background-repeat:no-repeat;background-position:3px 3px;background-size:25px 25px;padding-left:30px;" alt="qq:'+da.qqnum+'" title="qq:'+da.qqnum+'">'+da.name+'</span></li>');
lus.appendChild(obj);
//users[da.code]=da.name;
cuser(obj,da.code);
obj=receivedmsg(qqheadsrc,'大家好,我是“' + da.name + '”','','user_'+da.code);
c=da.code;
}else if(da.type=='madd'){
onlinenum=da.users.length;
iN.setFavicon(onlinenum);
document.title='与“大家”聊天中';
currenttitle=document.title;
da.time=justreplace(da.time);
da.name=justreplace(da.name);
da.code=justreplace(da.code);
mkey=da.code;
da.users.unshift({'code':'all','name':'大家'});
for(var i=0;i<da.users.length;i++){
da.users[i].name=justreplace(da.users[i].name);
da.users[i].code=justreplace(da.users[i].code);
if(da.users[i].qqnum&&da.users[i].qqnum!=''){
qqheadsrc='http://q1.qlogo.cn/g?b=qq&nk='+da.users[i].qqnum+'&s=100';
}else{
qqheadsrc='images/heisenberg.png';
}
if(i>0){
var obj=A.$$('<li><span style="background-image:url('+qqheadsrc+');background-repeat:no-repeat;background-position:3px 3px;background-size:25px 25px;padding-left:30px;" alt="qq:'+da.users[i].qqnum+'" title="qq:'+da.users[i].qqnum+'">'+da.users[i].name+'</span></li>');
}else{
var obj=A.$$('<li><span>'+da.users[i].name+'</span></li>');
}
if(mkey!=da.users[i].code){
lus.appendChild(obj);
cuser(obj,da.users[i].code);
}else{
selfname=da.users[i].name;
if(da.users[i].qqnum==''){
receivedmsg('images/info.png','登录成功,你的昵称是<font color="red">“' + da.name + '”</font>','','user_'+da.users[i].code);
}else{
receivedmsg('images/info.png','登录成功,你的昵称是<font color="red">“' + da.name + '”('+da.users[i].qqnum+')</font>','','user_'+da.users[i].code);
}
}
$(users['all']).click();
}
onlinetag=true;
}else if(da.type=='rmove'){
--onlinenum;
iN.setFavicon(onlinenum);
da.time=justreplace(da.time);
da.nrong=justreplace(da.nrong);
receivedmsg('images/info.png','“'+$(users[da.nrong]).text()+'”退出了聊天室','','user_'+da.nrong);
if(da.nrong==key){//如果离开的正好是当前聊天的对象
inotifyClear();
unflicker(users[key]);//去除闪烁
users['all'].click();
}else if(unflicker(users[da.nrong])){//如果当前退出的人跟你说过话
inotifyClear();
}
users[da.nrong].del();
delete users[da.nrong];
$('.user_'+da.nrong).each(function(){
var pele=$(this).find('p');
pele.html('<s>'+pele.html()+'</s>');
var imgele=$(this).find('img');
imgele.addClass('gray_img');
//console.log($(this).find('p').html());
});
}else{
da.nrong=justreplace(da.nrong);
da.code1=justreplace(da.code1);
da.code=justreplace(da.code);
da.time=justreplace(da.time);
da.msgid=justreplace(da.msgid);//消息id
da.nrong=linkfilter(da.nrong);
da.nrong=da.nrong.replace(/{\\(\d+)}/g,function(a,b){
return '<img src="sk/'+b+'.gif">';
}).replace(/^data\:image\/png;base64\,.{50,}$/i,function(a){
return '<img src="'+a+'">';
});
//da.code 发信息人的code
var barragesrc='images/heisenberg.png';
if(da.qqnum&&da.qqnum!=''){
barragesrc='http://q1.qlogo.cn/g?b=qq&nk='+da.qqnum+'&s=100';
}
if(da.code1==mkey){//发给我的
var inotifyicon='/favicon.ico';
if(da.qqnum&&da.qqnum!=''){
inotifyicon='http://q1.qlogo.cn/g?b=qq&nk='+da.qqnum+'&s=100';
}
inotifyTest("新消息来了",$(users[da.code]).text()+" 对你说:",inotifyicon,da.nrong);
flicker(users[da.code]);//闪烁
obj=receivedmsg(barragesrc,da.nrong,da.msgid,'user_'+da.code);
c=da.code;
}else if(da.code==mkey){//我发的
obj=sendmsg(barragesrc,da.nrong,da.msgid,'user_'+da.code1);
c=da.code1;
}else if(da.code==false){
obj=sendmsg(barragesrc,da.nrong,da.msgid,'');
}else if(da.code1){
obj=receivedmsg(barragesrc,da.nrong,da.msgid,'user_'+da.code);
c=da.code;
}
}
if(c){
if(c!=key&&key!='all'){
$(obj).hide();
}