forked from github2017luo/CMP4
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexbak.html
More file actions
1217 lines (1176 loc) · 88.2 KB
/
indexbak.html
File metadata and controls
1217 lines (1176 loc) · 88.2 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
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><head><meta http-equiv="Content-Type"content="text/html; charset=utf-8"/><meta name="renderer"content="webkit|ie-comp|ie-stand"><meta name="force-rendering"content="webkit"/><meta name="viewport"content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/><meta name="apple-mobile-web-app-capable"content="yes"><meta name="apple-touch-fullscreen"content="yes"><meta name="apple-mobile-web-app-status-bar-style"content="black"><meta name="full-screen"content="yes"><meta name="browsermode"content="application"><meta name="x5-fullscreen"content="true"><meta name="x5-page-mode"content="app"><meta name="title"content="龒蜗牛D"><meta name="keywords"content="龒蜗牛D,龒蜗牛,龒蜗牛D滚球影音,滚球影音,蜗牛影音,fQQ121027740"/><meta name="description"content="龒蜗牛D,龒蜗牛,龒蜗牛D滚球影音,滚球影音,蜗牛影音,QQ121027740"/><link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon"><link href="//cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css"rel="stylesheet"><link href="//cdn.jsdelivr.net/npm/jplayer@2.9.2/dist/skin/pink.flag/css/jplayer.pink.flag.min.css"rel="stylesheet"><style type="text/css" media="screen">@import "https://www.jq22.com/jquery/font-awesome.4.7.0.css";body{position:relative;overflow-x:hidden;}.nav .open > a{background-color:transparent;}.nav .open > a:hover{background-color:transparent;}.nav .open > a:focus{background-color:transparent;}#wrapper{-moz-transition:all 0.5s ease;-o-transition:all 0.5s ease;-webkit-transition:all 0.5s ease;padding-left:0;transition:all 0.5s ease;}#wrapper.toggled{padding-left:220px;}#wrapper.toggled #sidebar-wrapper{width:220px;}#wrapper.toggled #page-content-wrapper{margin-right:-220px;position:absolute;}#sidebar-wrapper{-moz-transition:all 0.5s ease;-o-transition:all 0.5s ease;-webkit-transition:all 0.5s ease;background:#1a1a1a;height:100%;left:220px;margin-left:-220px;overflow-x:hidden;overflow-y:auto;transition:all 0.5s ease;width:0;z-index:1000;}#sidebar-wrapper::-webkit-scrollbar{display:none;}#page-content-wrapper{padding-top:50px;width:100%;}.sidebar-nav{list-style:none;margin:0;padding:0;position:absolute;top:0;width:220px;}.sidebar-nav li{display:inline-block;line-height:20px;position:relative;width:100%;}.sidebar-nav li:before{background-color:#1c1c1c;content:'';height:100%;left:0;position:absolute;top:0;-webkit-transition:width 0.2s ease-in;transition:width 0.2s ease-in;width:3px;z-index:-1;}.sidebar-nav li:nth-child(1):before{background-color:#402d5c;color:#ffffff;}.sidebar-nav li:nth-child(2):before{background-color:#402d5c;}.sidebar-nav li:nth-child(3):before{background-color:#4c366d;}.sidebar-nav li:nth-child(4):before{background-color:#583e7e;}.sidebar-nav li:nth-child(5):before{background-color:#64468f;}.sidebar-nav li:nth-child(6):before{background-color:#704fa0;}.sidebar-nav li:nth-child(7):before{background-color:#7c5aae;}.sidebar-nav li:nth-child(8):before{background-color:#8a6cb6;}.sidebar-nav li:nth-child(9):before{background-color:#987dbf;}.sidebar-nav li:hover:before{-webkit-transition:width 0.2s ease-in;transition:width 0.2s ease-in;width:100%;}.sidebar-nav li a{color:#dddddd;display:block;text-decoration:none;}.sidebar-nav li.open:hover before{-webkit-transition:width 0.2s ease-in;transition:width 0.2s ease-in;width:100%;}.sidebar-nav .dropdown-menu{background-color:#333;border-radius:0;border:none;box-shadow:none;margin:0;padding:0;position:relative;width:100%;}.sidebar-nav li a:hover,.sidebar-nav li a:active,.sidebar-nav li a:focus,.sidebar-nav li.open a:hover,.sidebar-nav li.open a:active,.sidebar-nav li.open a:focus{background-color:transparent;color:#ffffff;text-decoration:none;}.sidebar-nav > .sidebar-brand{font-size:20px;height:50px;line-height:30px;}.hamburger{background:transparent;border:none;display:block;height:32px;margin-left:1px;position:fixed;top:10px;width:32px;z-index:2020;}.hamburger:hover{outline:none;}.hamburger:focus{outline:none;}.hamburger:active{outline:none;}.hamburger.is-closed:before{-webkit-transform:translate3d(0,0,0);-webkit-transition:all 0.35s ease-in-out;color:#ffffff;content:'';display:block;font-size:14px;line-height:32px;opacity:0;text-align:center;width:100px;}.hamburger.is-closed:hover before{-webkit-transform:translate3d(-100px,0,0);-webkit-transition:all 0.35s ease-in-out;display:block;opacity:1;}.hamburger.is-closed:hover .hamb-top{-webkit-transition:all 0.35s ease-in-out;top:0;}.hamburger.is-closed:hover .hamb-bottom{-webkit-transition:all 0.35s ease-in-out;bottom:0;}.hamburger.is-closed .hamb-top{-webkit-transition:all 0.35s ease-in-out;background-color:rgba(255,255,255,0.7);top:5px;}.hamburger.is-closed .hamb-middle{background-color:rgba(255,255,255,0.7);margin-top:-2px;top:50%;}.hamburger.is-closed .hamb-bottom{-webkit-transition:all 0.35s ease-in-out;background-color:rgba(255,255,255,0.7);bottom:5px;}.hamburger.is-closed .hamb-top,.hamburger.is-closed .hamb-middle,.hamburger.is-closed .hamb-bottom,.hamburger.is-open .hamb-top,.hamburger.is-open .hamb-middle,.hamburger.is-open .hamb-bottom{height:4px;left:0;position:absolute;width:100%;}.hamburger.is-open .hamb-top{-webkit-transform:rotate(45deg);-webkit-transition:-webkit-transform 0.2s cubic-bezier(0.73,1,0.28,0.08);background-color:#ffffff;margin-top:-2px;top:50%;}.hamburger.is-open .hamb-middle{background-color:#ffffff;display:none;}.hamburger.is-open .hamb-bottom{-webkit-transform:rotate(-45deg);-webkit-transition:-webkit-transform 0.2s cubic-bezier(0.73,1,0.28,0.08);background-color:#ffffff;margin-top:-2px;top:50%;}.hamburger.is-open:before{-webkit-transform:translate3d(0,0,0);-webkit-transition:all 0.35s ease-in-out;color:#ffffff;content:'';display:block;font-size:14px;line-height:32px;opacity:0;text-align:center;width:100px;}.hamburger.is-open:hover before{-webkit-transform:translate3d(-100px,0,0);-webkit-transition:all 0.35s ease-in-out;display:block;opacity:1;}.overlay{position:fixed;display:none;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0.4);z-index:1;}a{color:#000000;text-decoration:none;}.bs-glyphicons{margin:0 1px 0 1px;overflow:hidden;}.bs-glyphicons-list{padding-left:0;list-style:none;}.bs-glyphicons li{float:left;width:20%;height:95px;padding:1px;font-size:14px;line-height:1.4;text-align:center;background-color:rgba(249,249,249,0.3);overflow:hidden;}.bs-glyphicons .glyphicon{margin-top:5px;margin-bottom:10px;font-size:24px;}.bs-glyphicons .glyphicon-class{display:block;text-align:center;word-wrap:break-word;}.bs-glyphicons li:hover{color:#fff;background-color:#FFB000;}@media (min-width:768px){.bs-glyphicons{margin-right:0;margin-left:0;}.bs-glyphicons li{width:8%;font-size:14px;}}.txt{width:230px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}</style></head><body style="background-color:#FFF068;">
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse"style="margin-bottom: 0px;"role="navigation"><div class="navbar-header"style="margin-top: -9px;margin-bottom: -18px;"><button type="button"class="navbar-toggle"data-toggle="collapse"data-target="#bs-example-navbar-collapse-1"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></button><button type="button" class="hamburger animated fadeInLeft is-closed" data-toggle="offcanvas"><span class="hamb-top"></span><span class="hamb-middle"></span><span class="hamb-bottom"></span></button><a class="navbar-brand"><img data-src="holder.js/100%x200" alt="100%x200" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAlCAMAAAAHvluBAAAAgVBMVEUAAAD87QD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAkIQA+OgBTTQBlXwB2bwCFfQCUiwChlwCuowC6rwDGugDRxQDdzwDn2QDy4wD87QCpEuPsAAAAGnRSTlMAAAAQFiAmMEBGUFZgZnB2f4aPlp+vv8/f71XjAZ8AAAGnSURBVHjandKHlqsgEIDhgTTSzZKLFaLEJcr7P+AdwJWzm55vazw/DhYY8ALlB3Cm/gMHjw6AzBJHWdRXiactUkm0wXBWaa+3yGin8mGro3pDgSn7l9L2DyMoLKQxFl0MCv9IHf5G5y8cnQjhglYIodw+SzHssYj4nILb4rdF+PfiTqTR1WYYBWWv3QyluSaKSP+Ea1Gq36SoTdT9hISpq3txNfph2KionIQw3owQXt1HuQhhPBzCq0dYza5GPw0/HH11MWz22u1pVXV/9KkYnC2SY7hrcPLFLz/6I70J/LEuG8O4A8WOrf2tl3sgC2mQZFnnr6hVnLGjbHTUqPxAgZB1qZ7A2+hCHPqETt4KGav0E4oxCly9hENhX1K8HgoTn4DxrOOP9GYkYC1QLhvsbCtQGFEIkbqlWhXCWcM2req2t2goyxCS4TmGmFMocd2g6zsc0oVwUn73dnRawVb2oTrLrI5rMrL8l0s9nOWSUiCHOlRfi1k1dnJP0CJJS78vucWQ8JOrCOLhXVFVhl0w2RxzeeKUAlotIJgmaMfYDCJK6WKFv/4DRZe3NhHEZJYAAAAASUVORK5CYII=" data-holder-rendered="true" style="margin-top: -6px;margin-left: 30px;height: 51px;"></a><div class="navbar-form navbar-left input-s-lg m-t m-l-n-xs"id="MYsearch"><div class="input-group"><span class="input-group-btn"><select id="selectTest"name="selectTest"class="form-control m-b"style="width:55px;height:30px;padding: 0;"><option value="KG_SO">小狗音乐</option><option value="QQ_SO">小鹅音乐</option><option value="WY_SO">小红音乐</option><option value="KW_SO">小蜗音乐</option><option value="MG_SO">小咕音乐</option><option value="APK_SO">应用资源</option><option value="ZD_SO">影视资源</option><!----><option value="KANSP_SO">影视大全</option><option value="KWMV_SO">音乐MV</option><!----><option value="SG_SO">深港DJ</option><option value="YYHDJ_SO">音乐盒DJ</option><!--<option value="ZYSOSO_TXT">ZY搜索</option>--><option value="XMLY_SO">喜马拉雅</option><option value="SGTP_SO">搜狗图片</option><option value="ERWMA">二维码生成</option><option value="VIPJX">VIP视频JX</option></select></span><input type="text"id="sotxt"class="form-control input-sm no-border rounded"placeholder=" 搜索内容"style="padding: 0;"><span class="input-group-btn"><button type="submit"id="button_sotxt"class="btn btn-sm bg-white btn-icon rounded"><span class="glyphicon glyphicon-search"aria-hidden="true"></span></button></span></div></div></div><div class="collapse navbar-collapse"id="bs-example-navbar-collapse-1"><ul class="nav navbar-nav"><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"><span class="glyphicon glyphicon-th"aria-hidden="true"></span>蜗牛推荐<b class="caret"></b></a><ul class="dropdown-menu"><li><a href="javascript:JP_ADD('m4v,测试001,http://s.wo0.cn/o.php/KUWO_317464.mp4');">测试001</a></li><li><a href="javascript:QQYY('孙露');">孙露</a></li></ul></li><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"><span class="glyphicon glyphicon-th"aria-hidden="true"></span>网络资源<b class="caret"></b></a><ul class="dropdown-menu"><li><a href="javascript:WYYY('抖音');">抖音</a></li></ul></li></ul><ul class="nav navbar-nav navbar-right"><li></li></ul></div></nav>
<!--00--><div id="wrapper"class=""><div class="overlay"style="display: none;"></div><nav class="navbar navbar-inverse navbar-fixed-top"id="sidebar-wrapper"role="navigation"><ul class="nav sidebar-nav"><li class="sidebar-brand"><a href="#">Bootstrap 3</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@x@.json');"><i class="fa fa-fw fa-home"></i>首页</a></li><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-music"aria-hidden="true"></span>音乐◆MV<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:WYYY('抖音');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>抖音音乐</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@qqy@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>QQ音乐</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/qcc.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>QCC音乐</a></li><!--<li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@yysq@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>YY神曲</a></li>--></ul></li><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-film"aria-hidden="true"></span>资源◆视频<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@KAN360@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>影视大全</a></li></ul></li><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-facetime-video"aria-hidden="true"></span>直播◆电视<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@qqdjs@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>企鹅电竞</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@huya@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>虎牙直播</a></li><!--<li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@douyu@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>斗鱼直播</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@huaj@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>花椒直播</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@bili@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>哔哩直播</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@yzbtv@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>一直播</a></li>--></ul></li><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-headphones"aria-hidden="true"></span>电台◆DJ<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:XMLYFM('12627033');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>一禅心灵庙语</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@xmlyfm@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>喜马拉雅</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@sgdj@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>深港DJ</a></li><li><a href="javascript:QQYY('http://s.wo0.cn/o.php/KDSTV_x.jsonp?@QQYY@');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>看电视</a></li><!--<li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@tv@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>网络电视</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@klfm@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>考拉电台</a></li>--></ul></li><!--<li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-phone"aria-hidden="true"></span>应用◆破戒<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:QQYY('http://s.wo0.cn/o.php/ZDFS_ALL-1-ALL.jsonp?@QQYY@');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>应用资源</a></li></ul></li>--><li class="dropdown"><a href="#"class="dropdown-toggle"data-toggle="dropdown"aria-expanded="false"><span class="glyphicon glyphicon-sunglasses"aria-hidden="true"></span>美文◆美图◆美食<span class="caret"></span></a><ul class="dropdown-menu"role="menu"><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@pngs@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>精美图片</a></li><li><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@sgtp@.json');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>搜狗图片</a></li><li><a href="javascript:QQYY('http://s.wo0.cn/o.php/MSJMV_1.jsonp?&p=1');"><span class="glyphicon glyphicon-th-list"aria-hidden="true"></span>美食杰</a></li></ul></li></ul></nav><div id="page-content-wrapper"><!--/00-->
<div class="col-md-12 column"style="padding-right: 1px;padding-left: 1px;"id="top"><div class="clearfix"id="CCCC"style="margin-bottom: 0px;"></div><div id="BBZY"style="margin-bottom:0px;"><div class="GS_KG"><div id="GS_HL"></div></div><div class="JP_KG"><div class="list-group"id="JP_HL"></div></div></div></div><div id="MModal"class="modal fade"tabindex="-1"role="dialog"aria-labelledby="myModalLabel"aria-hidden="true"style="display: none;"><div class="modal-dialog"role="document"><div class="modal-content"><div class="modal-header"><h5 class="modal-title"id="exampleModalLabel">框架播放页</h5><button type="button"value="javascript:KJ_GB();"class="close"data-dismiss="modal"aria-label="Close"style="margin-top: -20px;"><span aria-hidden="true">×</span></button></div><div class="modal-body"style="padding: 1px;"><div class="col-md-12 column"id="KJ_IF"></div></div><div class="modal-footer"><button class="btn"value="javascript:KJ_GB();"data-dismiss="modal"aria-hidden="true">关闭窗口</button></div></div></div></div><nav class="navbar navbar-default navbar-fixed-bottom"style="border-width: 0 0 0;"role="navigation"><div class="row clearfix"><div class="col-md-12 column"><div id="jp_container_1"class="jp-video jp-video-360p"role="application"aria-label="media player"style="width: 100%;"><div class="jp-type-playlist"><div id="jquery_jplayer_1"class="jp-jplayer"></div><div class="jp-gui"id="jp-gui_hover"><div class="jp-interface"><div class="jp-progress"><div class="jp-seek-bar"><div class="jp-play-bar"></div></div></div><div class="jp-details"><div class="jp-title"aria-label="title"> </div></div><div class="jp-controls-holder"style="margin-bottom: 0;"><div style="float: left;height: 30px;font-size: 28px;"><a href="javascript:QQYY('http://www.fj365.ml/jsonp/@x@.json');"><span class="glyphicon glyphicon-home"aria-hidden="true"style="left: 0px;top: -6px;"></span></a><a href="javascript:;"id="BT_ZYS"><span class="glyphicon glyphicon-th"aria-hidden="true"style="left: 14px;top: -6px;"></span></a><a href="javascript:;"id="BT_JPS"><span class="glyphicon glyphicon-th-list"aria-hidden="true"style="left: 26px;top: -6px;"></span></a></div><div class="jp-volume-controls"><div class="jp-volume-bar" style="width:114px"><div class="jp-volume-bar-value"></div></div></div><div class="jp-controls"style="width:151px;margin-left: 36px;"><button class="jp-previous"role="button"tabindex="0">上一个</button><button class="jp-play"role="button"tabindex="0">播放</button><button class="jp-next"role="button"tabindex="0">下一个</button></div><div class="jp-toggles"style="display: none;"><a href="javascript:;"class="jp-full-screen"tabindex="1"title="全屏">全屏</a><a href="javascript:;"class="jp-restore-screen"tabindex="1"title="退屏">退屏</a></div><div><a href="#" id="FX_ZY" target="_Blank" title="分享" style="margin-left: 8px;"><span class="glyphicon glyphicon-share" aria-hidden="true" style="top: -1px;right: 0px;font-size: 30px;"></span></a></div><div class="jp-current-time"role="timer"aria-label="time" style="float: right;width: 140px;font-size: 1em;margin-top: -33px;"> </div></div></div></div></div></div></div></div></nav></div><script src="//cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.min.js"></script><script src="//cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js"></script><script src="//cdn.jsdelivr.net/combine/npm/jplayer@2.9.2,npm/jplayer@2.9.2/dist/add-on/jplayer.playlist.min.js,npm/jplayer@2.9.2/dist/add-on/jquery.jplayer.inspector.min.js"></script><script src="//cdn.jsdelivr.net/npm/jquery-lazyload@1.9.7/jquery.lazyload.min.js"></script><!--<script src="//s.wo0.cn/woniu.js"></script><script src="//cdn.jsdelivr.net/npm/jquery-pjax@2.0.1/jquery.pjax.min.js"></script>--><script type="text/javascript">$(document).ready(function(){var trigger=$('.hamburger'),overlay=$('.overlay'),isClosed=false;trigger.click(function(){hamburger_cross()});function hamburger_cross(){if(isClosed==true){overlay.hide();trigger.removeClass('is-open');trigger.addClass('is-closed');isClosed=false}else{overlay.show();trigger.removeClass('is-closed');trigger.addClass('is-open');isClosed=true}}$('[data-toggle="offcanvas"]').click(function(){$('#wrapper').toggleClass('toggled')})});</script>
<script>
if ((location.href || '').indexOf('vconsole=true') > -1) {
document.write('<script src="https://cdn.bootcss.com/vConsole/3.3.0/vconsole.min.js"><\/script>');
document.write('<script>new VConsole()<\/script>');
}
</script>
<script type="text/javascript">
var WNJP,time,url_s,url_p,jp_lb,lb_lb,lb_fy,pns,pn,mys,myx,myy,myld,myid,mymz,mysrc,mypng,myxo,fypp_lb;var times = new Date();
function MY_E2H(str) {
var arrEntities = {'lt': '<','gt': '>','nbsp': ' ','amp': '&','quot': '"'};
return str.replace(/&(lt|gt|nbsp|amp|quot);/ig, function(all, t) {
return arrEntities[t];
})
}
function G_Q_S(name) {
var so_so, reg, r, r2;
so_so = MY_E2H(window.location.search.substring(1)).replace(/\+/g, "%20");
reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
r = decodeURIComponent(so_so).match(reg);
r2 = (r[2]).split(/\?/)[0];
if (r != null) return (r2);
return null
}
function FX_ZYS(lsrc) {
myx = lsrc.match(/^([A-Z]+)@@@(.+)@@@(.+)@@@(.+)$/, "$1$2$3$4");
myid = myx[1];
mysrc = (myx[2]).replace('?', '%25253F');
mymz = myx[3];
if ((myx[4]).indexOf("GS@") > -1) {
mypng = (myx[4]).replace('GS@', 'http://i.gtimg.cn/music/photo/mid_singer_150/')
} else if ((myx[4]).indexOf("//image") > -1) {
//if ((myx[4]).indexOf(".xmcdn.com") > -1) {
//mypng = myx[4];
//}else{
mypng = 'http:' + myx[4];
//}
} else {
mypng = (myx[4]);
}
$("#FX_ZY").attr('href', 'http://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=http://www.fj365.ml/%3F' + myid + '%3D' + encodeURIComponent(mysrc) + '&title=' + encodeURIComponent(mymz) + '&desc=%E9%BE%92%E8%9C%97%E7%89%9BD%E6%BB%9A%E7%90%83%E5%BD%B1%E9%9F%B3&site=%E9%BE%92%E8%9C%97%E7%89%9BD&summary=%E9%BE%92%E8%9C%97%E7%89%9BD%E6%BB%9A%E7%90%83%E5%BD%B1%E9%9F%B3_Q%3A121027740%0A&pics=' + encodeURIComponent(mypng) + '&showcount=1')
}
$(document).ready(function() {
var item,so_val,so_so,so_str,so_s1,so_s2;
$('#MModal').modal('hide');
so_so = (window.location.search.substring(1)).replace(/\+/g, "%20");
if (so_so.indexOf('SO=') > -1) {
QQYY(G_Q_S('SO'))
} else if (so_so.match(/QQYY=/)) {
QQYY(G_Q_S('QQYY'))
} else if (so_so.match(/XMLYFM=/)) {
XMLYFM(G_Q_S('XMLYFM'))
} else if (so_so.match(/XMLYSO=/)) {
XMLYSO(G_Q_S('XMLYSO'))
} else if (so_so.match(/KLFM=/)) {
KLFM(G_Q_S('KLFM'))
} else if (so_so.match(/YYT=/)) {
YYT(G_Q_S('YYT'))
} else if (so_so.match(/SGDJ=/)) {
SGDJ(G_Q_S('SGDJ'))
} else if (so_so.match(/YYHDJ=/)) {
FX_ZYS('YYHDJ@@@'+G_Q_S('YYHDJ')+'@@@'+G_Q_S('YYHDJ')+'@@@http://static.yingyonghui.com/icon/128/6733512.png');
YYHDJ(G_Q_S('YYHDJ'))
} else if (so_so.match(/KUWOMV=/)) {
QQYY('http://s.wo0.cn/o.php/KUWO_'+G_Q_S('KUWOMV')+'.json?&p=0')
} else if (so_so.match(/ZDZY=/)) {
ZDZY(G_Q_S('ZDZY'))
} else if (so_so.match(/ZYSO=/)) {
if (G_Q_S('ZYSO').indexOf("--") > -1) {
so_str = (/^(.+)--([0-9]+)$/g).exec(G_Q_S('ZYSO'));
so_s1 = so_str[1];
so_s2 = so_str[2];
FX_ZYS('ZYSO@@@'+so_s1+'--'+so_s2+'@@@'+so_s1+'@@@http://static.yingyonghui.com/icon/128/6609198.png');
ZYSOTXT(so_s1,so_s2)
}else{
FX_ZYS('ZYSO@@@'+G_Q_S('ZYSO')+'@@@'+G_Q_S('ZYSO')+'@@@http://static.yingyonghui.com/icon/128/6609198.png');
ZYSOTXT(G_Q_S('ZYSO'),'1')
}
} else if (so_so.match(/MEIPAI=/)) {
MEIPAI(G_Q_S('MEIPAI'))
} else if (so_so.match(/YYSQ=/)) {
YYSQ(G_Q_S('YYSQ'))
} else if (so_so.match(/AIPAISO=/)) {
AIPAISO(G_Q_S('AIPAISO'))
} else if (so_so.match(/QQDJS=/)) {
QQDJS(G_Q_S('QQDJS'))
} else if (so_so.match(/HUAJ=/)) {
HUAJ(G_Q_S('HUAJ'))
} else if (so_so.match(/DOUYU=/)) {
DOUYU(G_Q_S('DOUYU'))
} else if (so_so.match(/YZBSO=/)) {
YZBSO(G_Q_S('YZBSO'))
} else if (so_so.match(/WYYY=/)) {
WYYY(G_Q_S('WYYY'))
} else if (so_so.match(/KUGOU=/)) {
FX_ZYS('KUGOU@@@'+G_Q_S('KUGOU')+'@@@'+G_Q_S('KUGOU')+'@@@http://static.yingyonghui.com/icon/128/6445467.png');
KUGOU(G_Q_S('KUGOU'))
} else if (so_so.match(/APK=/)) {
FX_ZYS('APK@@@'+G_Q_S('APK')+'@@@'+G_Q_S('APK')+'@@@http://static.yingyonghui.com/icon/128/6445467.png');
APKS(G_Q_S('APK'))
} else if (so_so.match(/KANSP=/)) {
FX_ZYS('KANSP@@@'+G_Q_S('KANSP')+'@@@'+G_Q_S('KANSP')+'@@@http://static.yingyonghui.com/icon/128/6729856.png');
KANSP(G_Q_S('KANSP'))
} else if (so_so.match(/KUWO=/)) {
FX_ZYS('KUWO@@@'+G_Q_S('KUWO')+'@@@'+G_Q_S('KUWO')+'@@@http://static.yingyonghui.com/icon/128/6684181.png');
KUWOS(G_Q_S('KUWO'))
} else if (so_so.match(/XIAMI=/)) {
FX_ZYS('XIAMI@@@'+G_Q_S('XIAMI')+'@@@'+G_Q_S('XIAMI')+'@@@http://static.yingyonghui.com/icon/128/6684181.png');
XIAMIS(G_Q_S('XIAMI'))
} else if (so_so.match(/MIGU=/)) {
FX_ZYS('MIGU@@@'+G_Q_S('MIGU')+'@@@'+G_Q_S('MIGU')+'@@@http://static.yingyonghui.com/icon/128/6732387.png');
MIGUS(G_Q_S('MIGU'))
} else if (so_so.match(/LZTVSO=/)) {
LZTVSO(G_Q_S('LZTVSO'))
} else if (so_so.match(/TAOBAOSO=/)) {
TAOBAOSO(G_Q_S('TAOBAOSO'))
} else if (so_so.match(/HUYATV=/)) {
HUYATV(G_Q_S('HUYATV'))
} else if (so_so.match(/VIPJX=/)) {
VIPJX(G_Q_S('VIPJX'))
} else if (so_so.match(/MAPNG=/)) {
MAPNG(G_Q_S('MAPNG'))
} else if (so_so.match(/PNGS=/)) {
PNGS(G_Q_S('PNGS'))
} else {
QQYY('http://fj365.ml/jsonp/@x@.json')
}
$("#selectTest").change(function() {
item = $("#selectTest").val()
});
$("#button_sotxt").click(function() {
so_val = $("#sotxt").val();
switch (item) {
case 'QQ_SO':
FX_ZYS('QQYY@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6383836.png');
QQYY(so_val);
break;
case 'KG_SO':
FX_ZYS('KUGOU@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6445467.png');
KUGOU(so_val);
break;
case 'APK_SO':
FX_ZYS('APK@@@'+so_val+'@@@'+so_val+'@@@https://www.zdfans.com/images/logo.png');
APKS(so_val);
break;
case 'KANSP_SO':
FX_ZYS('KANSP@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6729856.png');
KANSP(so_val);
break;
case 'MG_SO':
FX_ZYS('MIGU@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6732387.png');
MIGUS(so_val);
break;
case 'KW_SO':
FX_ZYS('KUWO@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6684181.png');
KUWOS(so_val);
break;
case 'KWMV_SO':
QQYY('http://s.wo0.cn/o.php/KUWO_'+so_val+'.json?&p=0');
break;
case 'XM_SO':
FX_ZYS('XIAMI@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6684181.png');
XIAMIS(so_val);
break;
case 'WY_SO':
FX_ZYS('WYYY@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/5934938.png');
WYYY(so_val);
break;
case 'YYT_SO':
YYT(so_val);
break;
case 'SG_SO':
FX_ZYS('SGDJ@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6372775.png');
SGDJ(so_val);
break;
case 'YYHDJ_SO':
FX_ZYS('YYHDJ@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6733512.png');
YYHDJ(so_val);
break;
case 'ZD_SO':
FX_ZYS('ZDZY@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6609198.png');
ZDZY(so_val);
break;
case 'ZYSOSO_TXT':
FX_ZYS('ZYSO@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6609198.png');
if (so_val.indexOf("--") > -1) {
so_str = (/^(.+)--([0-9]+)$/g).exec(so_val);
so_s1 = so_str[1];
so_s2 = so_str[2];
ZYSOTXT(so_s1,so_s2);
}else{
ZYSOTXT(so_val,'1');
}
break;
case 'XMLY_SO':
FX_ZYS('XMLYSO@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6389978.png');
XMLYSO(so_val);
break;
case 'AP_SO':
AIPAISO(so_val);
break;
case 'TBK_SO':
TAOBAOSO(so_val);
break;
case 'YZB_SO':
YZBSO(so_val);
break;
case 'LZTV_SO':
LZTVSO(so_val);
break;
case 'HUAJ_SO':
HUAJSO(so_val);
break;
case 'SGTP_SO':
SGPNGS(so_val);
break;
case 'KL_SO':
KLFM(so_val);
break;
case 'ERWMA':
FX_ZYS('MAPNG@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6609272.png');
MAPNG(so_val);
break;
case 'VIPJX':
FX_ZYS('VIPJX@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6298559.png');
VIPJX(so_val);
break;
default:
FX_ZYS('QQYY@@@'+so_val+'@@@'+so_val+'@@@http://static.yingyonghui.com/icon/128/6383836.png');
KUGOU(so_val);
}
})
});
$(document).ready(function() {
WNJP = new jPlayerPlaylist({
jPlayer: "#jquery_jplayer_1",
cssSelectorAncestor: "#jp_container_1"
}, [], {
ready: function(event) {
/*
$("#jquery_jplayer_1").dblclick(function() {
if ($(".jp-video-full").length > 0) {
$(".jp-restore-screen").click()
} else {
$(".jp-full-screen").click()
}
})
*/
},
playlistOptions: {
autoPlay: true,
playHead: '0',
playHeadTime: '0',
loopOnPrevious: false,
shuffleOnLoop: false,
enableRemoveControls: false,
displayTime: '0',
addTime: '0',
removeTime: '0',
shuffleTime: '0'
},
solution: 'html',
supplied: "mp3,m4v,m4a,rtmpa,m3u",
wmode: "window",
errorAlerts: true,
useStateClassSkin: true,
autoBlur: false,
smoothPlayBar: true,
size: {
width: "100%",
height: "1px",
cssClass: "jp-video-360p"
},
keyEnabled: true,
audioFullScreen: false,
playHead: '0',
playHeadTime: '0',
preload: "auto",
timeupdate: function(event) {
if (event.jPlayer.status.currentTime > 0) {
time = event.jPlayer.status.currentTime
}
},
play: function(event) {
document.title = event.jPlayer.status.media.title;
if (event.jPlayer.status.formatType === "m4v") {
document.getElementById("jp_video_0").controls = true;
$("#jquery_jplayer_1").css("height", JP_HG() + "px");
$("#jp_video_0").css({
"height": "100%",
"margin-top": "0px"
});
$("#BBZY").css({
"margin-bottom": "" + (parseInt(JP_HG()) + 65) + "px"
})
} else if (event.jPlayer.status.formatType === "mp3" || event.jPlayer.status.formatType === "m4a") {
$("#jquery_jplayer_1").css("height", "1px");
$("#BBZY").css({
"margin-bottom": "65px"
})
}
if (typeof(event.jPlayer.status.media.poster) === 'undefined') {
mypng = 'http://s.wo0.cn/logo.png'
} else {
mypng = (event.jPlayer.status.media.poster)
}
},
pause: function(event) {
$("#jquery_jplayer_1").css("height", "1px");
$("#jp_video_0").css("margin-top", "65px");
$("#BBZY").css({
"margin-bottom": "65px"
})
},
stop: function(event) {
$("#jquery_jplayer_1").css("height", "1px");
$("#jp_video_0").css("margin-top", "65px");
$("#BBZY").css({
"margin-bottom": "65px"
})
},
error: function(event) {
$("#jquery_jplayer_1").css("height", "1px");
$("#jp_video_0").css("margin-top", "65px");
$("#BBZY").css({
"margin-bottom": "65px"
})
},
ended: function(event) {
$("#jquery_jplayer_1").css("height", "1px");
$("#jp_video_0").css("margin-top", "65px");
$("#BBZY").css({
"margin-bottom": "65px"
})
}
});
$(document.documentElement).keydown(function(event) {
if (event.which === 32) {
/*
if ($(".jp-jplayer").data("jPlayer").status.paused) {
$(".jp-jplayer").jPlayer("play");
} else {
$(".jp-jplayer").jPlayer("pause");
}
event.preventDefault();
*/
}
if (event.which === 27) {
/*
$(".jp-video-full .jp-restore-screen").click();
event.preventDefault();
*/
}
if (event.which === 13) {
$("#button_sotxt").click();
}
})
});
function AJAX(lsrc) {
$.ajax({
cache: true,
async: true,
url: lsrc,
type: "GET",
dataType: "jsonp",
jsonpCallback: "success_jsonpCallback",
contentType: "application/jsonp; charset=utf-8",
timeout: 15000,
success: function(data) {
/*
var state = { 'pageurl':'http://s.wo0.cn/?QQYY='+lsrc,'pagetitle':document.title,'jsonurl':lsrc,};
if(lsrc){
//console.log("push state of "+state);
history.pushState(state, document.title, 'http://www.fj365.ml/?QQYY='+lsrc);
}
*/
if(lsrc.match(/@([0-9a-zA-Z_-]+)@/)){
QQYYS_success_jsonpCallback(data, lsrc);
$(".JP_KG").hide();
$(".GS_KG").show();
$('html,body').animate({
scrollTop: '0px'
}, 200);
$("#UUUU_P").remove();
$("img").lazyload({
placeholder : "/ing.gif",
effect: "fadeIn",
threshold: 200,
event: 'click',
container: $("#GS_HL"),
failurelimit: 10
})
}else{
QQYY_success_jsonpCallback(data, lsrc);
$(".GS_KG").hide();
$(".JP_KG").show();
$('html,body').animate({
scrollTop: '0px'
}, 200)
if (lsrc.indexOf('KAN360_') > -1){
$("#UUUU_P").remove();
}
}
},
error: function(jqXHR, textStatus, errorThrown) {}
})
}
if (history.pushState) {
window.addEventListener("popstate", function() {
//console.log("popstate called ,href="+location.href +", state = "+history.state);
if(! history.state) return;
//console.log(history.state);
if ((history.state.pageurl).indexOf("KLFM=") > -1) {
KLFM(history.state.jsonurl);
}else{
QQYY(history.state.jsonurl);
}
});
}
/*
function PAjaxData(obj, url){
console.log(obj.html);
document.getElementById("#JP_HL").innerHTML = obj.html;
document.title = obj.pageTitle;
window.history.pushState({"html":obj.html,"pageTitle":obj.pageTitle},"", url);
}
window.onpopstate = function(event){
if(event.state){
document.getElementById("#JP_HL").innerHTML = event.state.html;
document.title = event.state.pageTitle;
}
};
*/
function JP_ADD(data){
var myadd,myadds,myaddlb;
myadd = data.match(/([a-z0-9]+),(.+),(.+)/, "$1$2$3");
myadds = '{title:"'+myadd[2]+'",'+myadd[1]+':"'+myadd[3]+'"}';
eval("myadds_add=" + myadds);
WNJP.add(myadds_add,true);
//WNJP.play(-1);
/*
myaddlb='';
myaddlb += '<div class="list-group-item" style="background-color: rgba(185, 185, 185, 0.5);"><span class="badge"><a href="' + myadd[3] + '" download="wn.' + myadd[1] + '"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a></span><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> <a href="javascript:WNJP.play(0);">' + myadd[2] + '</a></div>'
$("#JP_HL").html(myaddlb)
*/
}
function QQYY(lsrc) {
if (lsrc.indexOf("http") > -1) {
url_s = decodeURIComponent(lsrc);
if (url_s.indexOf(".apk") > -1 || url_s.indexOf(".html") > -1) {
window.open(url_s,'_blank');
}else{
AJAX(url_s);
}
} else {
url_s = 'http://s.wo0.cn/o.php/QQZY_' + decodeURIComponent(lsrc)+'.jsonp?&p=1';//http://s.wo0.cn/php/qqyy.php?type=jsonp&so=
AJAX(url_s);
}
}
function QQYY_success_jsonpCallback(data, fy) {
var myhz;
jp_lb = '[';
$.each(data, function(k, v) {
jp_lb += '{' + v.type + ':"' + v.src + '",title:"' + v.label + '"},'
});
jp_lb += ']';
eval("qqyy_lb=" + jp_lb);
//eval("fypps_lb=" + fypp_lb);
WNJP.setPlaylist(qqyy_lb);
WNJP.play(0);
if (fy.indexOf("http") > -1) {
lb_lb = '';
$.each(data, function(k, v) {
if ((v.type).indexOf("m4v") > -1) {
myhz = '.mp4'
} else {
myhz = '.mp3'
}
if (k % 2 == 0) {
myxo = 'style="background-color: rgba(255, 255, 255, 0.3);"'
} else {
myxo = 'style="background-color: rgba(185, 185, 185, 0.5);"'
}
if ((v.src).indexOf(".html") > -1 || (v.src).indexOf("www.fun.tv") > -1 || (v.src).indexOf(".shtml") > -1 || (v.src).indexOf("bilibili.com/bangumi/play/") > -1 || (v.src).indexOf("bangumi.bilibili.com/anime/") > -1 || (v.src).indexOf("cntv.cn/video/") > -1) {
lb_lb += '<div class="list-group-item" ' + myxo + '><span class="badge"><a href="#MModal" onclick="javascript:VIPJX(\'' + v.src + '\');"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a></span><a href="#MModal" onclick="javascript:VIPJX(\'' + v.src + '\');"><p class="txt"><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> ' + v.label + '</a></p></a></div>'
} else {
lb_lb += '<div class="list-group-item" ' + myxo + '><span class="badge"><a href="' + v.src + '" download="' + v.label + myhz + '"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a></span><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> <a href="javascript:WNJP.play(' + k + ');">' + v.label + '</a></div>'//<p class="txt">
}
});
lb_lb += '';
if (fy.indexOf("&p=") > -1) {
myx = fy.match(/(.+)&p=([0-9]+)/, "$1$2");
mys = myx[1];
pn = myx[2];
if ((parseInt(pn) - 5) <= 0) {
pns = 1
} else {
pns = (parseInt(pn) - 5)
}
lb_fy = '</div><div class="text-center"><div class="pagination" id="UUUU_P" style="margin:3px 0 12px 0;"><ul class="pagination" style="margin:0 0 80px;"><li><a href="javascript:QQYY(\'' + mys + '&p=' + pns + '\');"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></a></li>';
for (var j = parseInt(pn) + 1; j < parseInt(pn) + 5; j++) {
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '&p=' + j + '\');">' + j + '</a></li>'
}
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '&p=' + (parseInt(pn) + 5) + '\');"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li><li><a class="back-to-top" href="#top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></a></li></ul></div>'
}
} else {
lb_lb = '';
$.each(data, function(k, v) {
if (k % 2 == 0) {
myxo = 'style="background-color: rgba(255, 255, 255, 0.3);"'
} else {
myxo = 'style="background-color: rgba(185, 185, 185, 0.5);"'
}
lb_lb += '<div class="list-group-item" ' + myxo + '><span class="badge"><a href="' + v.src + '" download="' + v.label + '.m4a"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a></span><a href="javascript:WNJP.play(' + k + ');"><p class="txt"><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> ' + v.label + '</a></p></a></div>'
});
/*
<span class="badge"><a href="' + v.src + '&type=flac" download="' + v.label + '.flac">FLAC</a></span><span class="badge"><a href="' + v.src + '&type=ape" download="' + v.label + '.ape">APE</a></span><span class="badge"><a href="' + v.src + '&type=MP3" download="' + v.label + '.mp3">MP3</a></span><span class="badge"><a href="' + v.src + '&type=aac" download="' + v.label + '.m4a">AAC</a></span><span class="badge"><a href="' + v.src + '&type=ogg" download="' + v.label + '.ogg">OGG</a></span><span class="badge"><a href="' + v.src + '&type=mp3" download="' + v.label + '.mp3">mP3</a></span><span class="badge"><a href="' + v.src + '&type=M4A" download="' + v.label + '.m4a">M4A</a></span><br>
*/
lb_lb += '';
if (fy.indexOf("____") > -1) {
myx = fy.match(/^(.+)____([0-9]+)$/, "$1$2");
mys = myx[1];
pn = myx[2]
} else {
mys = fy;
pn = 1
} if ((parseInt(pn) - 5) <= 0) {
pns = 1
} else {
pns = (parseInt(pn) - 5)
}
lb_fy = '</div><div class="text-center"><div class="pagination" id="UUUU_P" style="margin:3px 0 12px 0;"><ul class="pagination" style="margin:0 0 80px;"><li><a href="javascript:QQYY(\'' + mys + '____' + pns + '\');"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></a></li>';
for (var j = parseInt(pn) + 1; j < parseInt(pn) + 5; j++) {
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '____' + j + '\');">' + j + '</a></li>'
}
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '____' + (parseInt(pn) + 5) + '\');"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li><li><a class="back-to-top" href="#top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></a></li></ul></div>'
}
if (typeof(lb_fy) == "undefined" || fy.indexOf("KAN360_") > -1 || parseInt(data.length) <= 3) {
lb_fy = ''
}
//PAjaxData({"html":""+fy+"","pageTitle":""+times+"","id":""+times+""},fy);
$("#JP_HL").html(lb_lb + lb_fy)
}
function QQYYS_success_jsonpCallback(data, fy) {
lb_lb = '<div class="bs-glyphicons"><ul class="bs-glyphicons-list">';
$.each(data, function(k, v) {
mysrc = fy.match(/@([0-9a-zA-Z_]+)@/, "$1")[1];
if ((v.PNG).indexOf("GS@") > -1) {
mypng = (v.PNG).replace('GS@', 'http://i.gtimg.cn/music/photo/mid_singer_150/')
} else {
mypng = (v.PNG)
} if ((v.HTML).indexOf("@@@") > -1) {
myx = (/(.+)@@@(.+)@@@(.+)/g).exec(v.HTML);
myld = myx[1];
myid = myx[2];
mymz = myx[3];
if (mysrc === 'tbke') {
lb_lb += '<li><a href="#MModal" onclick="javascript:' + myld + '(\'' + mymz + '__' + myid + '__' + mypng + '\');"><img src="/ing.gif" data-original="' + mypng + '" width="60" height="60" class="r r-2x img-full"></a><span class="glyphicon-class"><a href="#" class="text-ellipsis" title="' + mymz + '">' + mymz + '</a></span></li>'
} else {
lb_lb += '<li><a href="javascript:' + myld + '(\'' + myid + '\');" onclick="javascript:FX_ZYS(\'' + v.HTML + '@@@' + mypng + '\');"><img src="/ing.gif" data-original="' + mypng + '" width="60" height="60" class="r r-2x img-full"></a><span class="glyphicon-class"><a href="javascript:' + myld + '(\'' + myid + '\')" class="text-ellipsis" title="' + mymz + '">' + mymz + '</a></span></li>'
}
} else {
lb_lb += '<li><a href="javascript:' + mysrc + '(\'' + v.HTML + '\');" onclick="javascript:FX_ZYS(\'' + v.HTML + '@@@' + mypng + '\');"><img src="/ing.gif" data-original="' + mypng + '" width="60" height="60" class="r r-2x img-full"></a><span class="glyphicon-class"><a href="javascript:' + mysrc + '(\'' + v.HTML + '\');" class="text-ellipsis" title="' + v.HTML + '">' + v.HTML + '</a></span></li>'
}
});
lb_lb += '</ul></div>';
if (fy.indexOf("&pg=") > -1) {
var kj_fy;
if (mysrc === 'tbke') {
kj_fy = 'tbke'
} else {
kj_fy = 'all'
}
myx = fy.match(/(.+)&pg=([0-9]+)/, "$1$2");
mys = myx[1];
pn = myx[2];
if ((parseInt(pn) - 5) <= 0) {
pns = 1
} else {
pns = (parseInt(pn) - 5)
}
lb_fy = '</div><div class="text-center" style="margin: 0 1px 100px 1px;"><div class="PAGE"><ul class="pagination" id="UUUU_PG"><li><a href="javascript:QQYY(\'' + mys + '&pg=' + pns + '&@' + kj_fy + '@\');"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></a></li>';
for (var j = parseInt(pn) + 1; j < parseInt(pn) + 5; j++) {
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '&pg=' + j + '&@' + kj_fy + '@\');">' + j + '</a></li>'
}
lb_fy += '<li><a href="javascript:QQYY(\'' + mys + '&pg=' + (parseInt(pn) + 5) + '&@' + kj_fy + '@\');"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li><li><a class="back-to-top" href="#top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></a></li></ul></div>'
}else{
lb_lb += '<div class="text-center" style="margin: 0 1px 100px 1px;"></div>';
}
if (typeof(lb_fy) == "undefined" || fy.indexOf(".txt") > -1 || parseInt(data.length) <= 3) {
lb_fy = ''
}
if (fy.indexOf("@x@.json") > -1) {
var xq_1,xq_2,xq_3,xq_4,xq_5,xq_6,xq_7,xq_8,xq_88,xq_888,J_00,xq_j,dh_j,xq_666,xingqiarr=[1,2,3,4,5,6,0,888],week = new Date().getDay();
lb_fy = '';var lb_lbs = '';
//xq_88 = $('#xq_888').attr('href');
if (week < 8) {
var wnc = "active";
}
if (week == xingqiarr[0]) {
xq_1 = "active";
}else if (week == xingqiarr[1]) {
xq_2 = "active";
}else if (week == xingqiarr[2]) {
xq_3 = "active";
}else if (week == xingqiarr[3]) {
xq_4 = "active";
}else if (week == xingqiarr[4]) {
xq_5 = "active";
}else if (week == xingqiarr[5]) {
xq_6 = "active";
}else if (week == xingqiarr[6]) {
xq_7 = "active";
}
xq_j = [{'ZYSO_30763-10-LL.jsonp':'眷思量_快云&_&APKPNG@6375279.png','ZYSO_78634-11-LL.jsonp':'眷思量_度云&_&APKPNG@6375279.png','ZYSO_20517-10-LL.jsonp':'无上神帝_快云&_&APKPNG@6375279.png','ZYSO_40989-11-LL.jsonp':'无上神帝_度云&_&APKPNG@6375279.png','ZYSO_22057-10-LL.jsonp':'万界仙踪_快云&_&APKPNG@6375279.png','ZYSO_13019-12-LL.jsonp':'万界仙踪_度云&_&APKPNG@6375279.png','NNWP_539.json':'洛基_戏精&_&APKPNG@6375279.png'},{'ZYSO_20537-10-LL.jsonp':'武神主宰_快云&_&APKPNG@6375279.png','ZYSO_41200-11-LL.jsonp':'武神主宰_度云&_&APKPNG@6375279.png','ZYSO_29272-10-LL.jsonp':'万界独尊_快云&_&APKPNG@6375279.png','ZYSO_72446-11-LL.jsonp':'万界独尊_度云&_&APKPNG@6375279.png','ZYSO_15466-11-LL.jsonp':'异世界中药铺_度云&_&APKPNG@6375279.png'},{'ZYSO_21341-10-LL.jsonp':'一念永恒_快云&_&APKPNG@6375279.png','ZYSO_42851-11-LL.jsonp':'一念永恒_度云&_&APKPNG@6375279.png','ZYSO_23442-10-LL.jsonp':'绝世武魂_快云&_&APKPNG@6375279.png','ZYSO_51228-11-LL.jsonp':'绝世武魂_度云&_&APKPNG@6375279.png','ZYSO_20548-10-LL.jsonp':'首席御灵师_快云&_&APKPNG@6375279.png','ZYSO_41167-11-LL.jsonp':'首席御灵师_度云&_&APKPNG@6375279.png','ZYSO_11653-10-LL.jsonp':'西行纪_快云&_&APKPNG@6375279.png','ZYSO_78600-11-LL.jsonp':'西行纪_度云&_&APKPNG@6375279.png','ZYSO_64038-11-LL.jsonp':'星骸骑士_度云&_&APKPNG@6375279.png'},{'ZYSO_20499-10-LL.jsonp':'独步逍遥_快云&_&APKPNG@6375279.png','ZYSO_41171-11-LL.jsonp':'独步逍遥_度云&_&APKPNG@6375279.png','ZYSO_27342-10-LL.jsonp':'唯我独神_快云&_&APKPNG@6375279.png','ZYSO_27342-11-LL.jsonp':'唯我独神_度云&_&APKPNG@6375279.png','ZYSO_27148-10-LL.jsonp':'流星幻剑_快云&_&APKPNG@6375279.png','ZYSO_65864-11-LL.jsonp':'流星幻剑_度云&_&APKPNG@6375279.png','ZYSO_30297-10-LL.jsonp':'狂神魔尊_快云&_&APKPNG@6375279.png','ZYSO_78007-11-LL.jsonp':'狂神魔尊_度云&_&APKPNG@6375279.png','ZYSO_29684-10-LL.jsonp':'画江湖之不良人4季_快云&_&APKPNG@6375279.png','ZYSO_74032-11-LL.jsonp':'画江湖之不良人4季_度云&_&APKPNG@6375279.png'},{'ZYSO_26340-10-LL.jsonp':'转生成蜘蛛又怎样_快云&_&APKPNG@6375279.png','ZYSO_64589-11-LL.jsonp':'转生成蜘蛛又怎样_度云&_&APKPNG@6375279.png','ZYSO_29487-10-LL.jsonp':'完美世界_快云&_&APKPNG@6375279.png','ZYSO_73489-11-LL.jsonp':'完美世界_度云&_&APKPNG@6375279.png','ZYSO_12016-10-LL.jsonp':'灵剑尊_快云&_&APKPNG@6375279.png','ZYSO_46461-11-LL.jsonp':'灵剑尊_度云&_&APKPNG@6375279.png'},{'ZYSO_20498-10-LL.jsonp':'斗罗大陆第一季_快云&_&APKPNG@6375279.png','ZYSO_41343-11-LL.jsonp':'斗罗大陆第一季_度云&_&APKPNG@6375279.png','ZYSO_44235-11-LL.jsonp':'万界神主_度云&_&APKPNG@6375279.png','ZYSO_45528-11-LL.jsonp':'少年歌行_度云&_&APKPNG@6375279.png','ZYSO_51868-11-LL.jsonp':'无限系统树_度云&_&APKPNG@6375279.png','ZYSO_16558-10-LL.jsonp':'新世纪福音战士_快云&_&APKPNG@6375279.png','ZYSO_15720-11-LL.jsonp':'新世纪福音战士_度云&_&APKPNG@6375279.png','ZYSO_43123-11-LL.jsonp':'游戏人生_度云&_&APKPNG@6375279.png','ZYSO_12207-10-LL.jsonp':'加速世界_快云&_&APKPNG@6375279.png'},{'ZYSO_28657-10-LL.jsonp':'斗破苍穹第四季_快云&_&APKPNG@6375279.png','ZYSO_70683-11-LL.jsonp':'斗破苍穹第四季_度云&_&APKPNG@6375279.png','ZYSO_20893-10-LL.jsonp':'海贼王_快云&_&APKPNG@6375279.png','ZYSO_15741-11-LL.jsonp':'海贼王_度云&_&APKPNG@6375279.png','ZYSO_20883-10-LL.jsonp':'凡人修仙传_快云&_&APKPNG@6375279.png','ZYSO_41492-11-LL.jsonp':'凡人修仙传_度云&_&APKPNG@6375279.png','ZYSO_21073-10-LL.jsonp':'灵笼_快云&_&APKPNG@6375279.png','ZYSO_41602-11-LL.jsonp':'灵笼_度云&_&APKPNG@6375279.png','ZYSO_11737-10-LL.jsonp':'时钟机关之星_快云&_&APKPNG@6375279.png','ZYSO_51149-11-LL.jsonp':'DARLING in the FRANXX_度云&_&APKPNG@6375279.png','ZYSO_16038-10-LL.jsonp':'人形电脑天使心_快云&_&APKPNG@6375279.png','ZYSO_51564-11-LL.jsonp':'人形电脑天使心_度云&_&APKPNG@6375279.png'}];
dh_j = [{'http://www.yhdm02.com/':'樱花动漫&_&APKPNG@6845388.png','http://qx.jsij.cn/':'七星影视&_&APKPNG@6375279.png','https://qxkkk.cn/':'七星影视二&_&APKPNG@6375279.png','http://dilidili1.com/':'嘀哩嘀哩&_&APKPNG@6375279.png','http://halihali2.com/':'哈里哈里&_&APKPNG@6375279.png','https://www.cupfox.com/':'茶杯狐&_&APKPNG@6375279.png','https://www.9ehao.com/':'9亿看看&_&APKPNG@6375279.png','https://www.subaibai.com/':'素白白&_&APKPNG@6375279.png','http://cokemv.cn/':'可乐影院&_&APKPNG@6375279.png','http://dianying.im/':'电影先生&_&APKPNG@6375279.png','https://www.pianku.li/':'片库&_&APKPNG@6375279.png','https://007ys1.com/':'小小影视&_&APKPNG@6375279.png','http://xijing.tv/movie/':'戏精&_&APKPNG@6375279.png'},{'https://tonzhon.com/hot':'铜钟音乐&_&APKPNG@6583623.png','http://music.liumingye.cn/':'MYFreeMP3&_&APKPNG@6583623.png','http://music.jsososo.com/':'一起听音乐呀&_&APKPNG@6583623.png','http://47.112.23.238/':'天天静听&_&APKPNG@6583623.png','http://music.y444.cn/':'下载吧&_&APKPNG@6583623.png','https://music.qier222.com/':'YesPlayMusic&_&APKPNG@6583623.png','https://www.yin2s.com/':'音兔&_&APKPNG@6583623.png','https://music.postgraduate.top/':'MK音乐01&_&APKPNG@6583623.png','https://netease-music.fe-mm.com/#/music/toplist':'MK音乐02&_&APKPNG@6583623.png','http://music.runker.net/':'MK音乐03&_&APKPNG@6583623.png','https://www.asmrin.com/':'耳音&_&APKPNG@6583623.png','https://tide.fm/sounds':'潮汐&_&APKPNG@6583623.png','https://www.hifige.com/singer':'HIFI阁&_&APKPNG@6583623.png'},{},{},{'https://www.cowppt.com/':'奶牛PPT&_&APKPNG@6850934.png','http://www.uugai.com/':'U钙网&_&APKPNG@6603205.png','https://www.logomaker.com.cn/':'标智网&_&APKPNG@6603205.png'},{},{},{'https://www.ypojie.com/app':'亿破姐&_&APKPNG@192906.png','https://www.iapps.me/archives/category/app':'翻应用&_&APKPNG@192906.png','https://www.423down.com/apk':'423应用&_&APKPNG@192906.png','https://www.ghpym.com/category/all/android':'果核剥壳&_&APKPNG@192906.png','https://m.shouji.com.cn/soft_category.html':'手机之家&_&APKPNG@192906.png','https://www.mpyit.com/category/android':'殁漂遥&_&APKPNG@192906.png','https://www.sharerw.com/':'分享者&_&APKPNG@192906.png','https://www.hezibuluo.com/app':'盒子部落&_&APKPNG@192906.png','https://www.wandoujia.com/category/app':'豌豆荚&_&APKPNG@192906.png','http://www.appchina.com/soft':'应用汇&_&APKPNG@192906.png'}];
J_00 = [{'66601':'视频','66602':'音乐','66603':'漫画','66604':'小说','66605':'设计','66606':'工具','66607':'热点','66608':'应用'}];
/*----*/
lb_lbs += "<div class=\"view\"><div class=\"tabbable\"id=\"tabs-000\"><ul class=\"nav nav-tabs\"><li class=\"active\"><a href=\"#panel-888\"data-toggle=\"tab\"contenteditable=\"false\" style=\"padding: 4px 5px;\">推荐</a></li><li class=\"\"><a href=\"#panel-666\"data-toggle=\"tab\"contenteditable=\"false\" style=\"padding: 4px 5px;\">导航</a></li></ul><div class=\"tab-content\"><div class=\"tab-pane\"id=\"panel-888\">"+lb_lb+"</div><div class=\"tab-pane\"id=\"panel-666\">"+ZY_ECHOS(J_00,''+ZY_ECHO(dh_j,'A')+'','66601')+"</div></div></div></div>";
/*----*/
$('#GS_HL').html(lb_lbs + lb_fy)
}else{
lb_lbs = ''
$('#GS_HL').html(lb_lb + lb_fy)
}
}
function ECHO(str){
document.write(str);
}
function ZY_ECHO(json,type){
var D_00,D_01,D_02,D_03,D_04,D_x,key,D_a=['001','002','003','004','005','006','007'],D_b=['66601','66602','66603','66604','66605','66606','66607','66608'],D_xq=[1,2,3,4,5,6,0],week = new Date().getDay();var D_lb ='';
for(var i=0,l=json.length;i<l;i++){
if(type == 'XQ'){
if (week == D_xq[i]){D_x="active";}else{D_x="";}
D_03 = D_x;D_04 = D_a[i];
}else if(type == 'A'){
D_04 = D_b[i];
if(i==0){D_03="active";}else{D_03="";}
}
D_lb +="<div class=\"tab-pane "+D_03+"\" id=\"panel-"+D_04+"\"><div class=\"bs-glyphicons\"><ul class=\"bs-glyphicons-list\">";
for(key in json[i]){
D_00 = (json[i][key]).match(/^(.+)&_&(.+)$/, "$1$2");
if ((D_00[2]).indexOf("APKPNG@") > -1){D_02 = (D_00[2]).replace('APKPNG@','http://static.yingyonghui.com/icon/128/');}
if(type == 'XQ'){
D_lb +="<li><a href=\"javascript:QQYY(\'http://s.wo0.cn/o.php/"+key+"\');\"onclick=\"javascript:FX_ZYS(\'QQYY@@@http://s.wo0.cn/o.php/"+key+"@@@"+D_00[1]+"@@@"+D_02+"\');\"><img src=\""+D_02+"\"data-original=\""+D_02+"\"width=\"60\"height=\"60\"class=\"r r-2x img-full\"style=\"\"></a><span class=\"glyphicon-class\"><a href=\"javascript:QQYY(\'http://s.wo0.cn/o.php/"+key+"\')\"class=\"text-ellipsis\"title=\""+D_00[1]+"\">"+D_00[1]+"</a></span></li>";
}else if(type == 'A'){
D_lb +="<li><a href=\""+key+"\"target=\"_blank\"><img src=\""+D_02+"\"data-original=\""+D_02+"\"width=\"60\"height=\"60\"class=\"r r-2x img-full\"style=\"\"></a><span class=\"glyphicon-class\"><a href=\""+key+"\"target=\"_blank\"class=\"text-ellipsis\"title=\""+D_00[1]+"\">"+D_00[1]+"</a></span></li>";
}
}
D_lb +='</ul></div></div>';
}
return D_lb;
}
function ZY_ECHOS(json,str,active,type){
var D_07,D_08;var D_lbs ='';
if(type){D_08='tabs';}else{D_08='pills';}
D_lbs +="<ul class=\"nav nav-"+D_08+"\">";
for(var i=0,l=json.length;i<l;i++){
for(let k in json[i]){
if(k==active){D_07=" class=\"active\"";}else{D_07="";}
D_lbs +="<li"+D_07+"><a href=\"#panel-"+k+"\"data-toggle=\"tab\"contenteditable=\"false\"style=\"padding: 5px 4px;\">"+json[i][k]+"</a></li>";
}
}
D_lbs +="</ul><div class=\"tab-content\">"+str+"</div>";
return D_lbs;
}
function PD_KZ(str) {
var pdkzs;
if (typeof(str) == "undefined"){
pdkzs = ''
}else{
pdkzs = str;
}
return pdkzs;
}
function KUGOU(lsrc) {
if (lsrc.indexOf("@") > -1) {
myx = (/^(.+)@([0-9]+)$/g).exec(lsrc);
url_s = myx[1];
url_p = myx[2]
} else {
url_s = lsrc;
url_p = 1
}
$.ajax({
cache: true,
async: true,
url: "http://songsearch.kugou.com/song_search_v2?keyword=" + url_s + "&page=" + url_p + "&pagesize=100&showtype=10&plat=2&version=9168&tag=1&correct=1&privilege=1&sver=5&highlight=em&tag_aggr=1&tagtype=%E5%85%A8%E9%83%A8&api_ver=1&area_code=1",
//http://ioscdn.kugou.com/api/v3/search/song?format=jsonp&iscorrect=1&pagesize=100&plat=2&sver=5&showtype=10&page=" + url_p + "&keyword=" + url_s + "&version=8550",
type: "GET",
dataType: "jsonp",
jsonpCallback: 'success_jsonpCallback',
contentType: "application/jsonp; charset=utf-8",
timeout: 8e3,
success: function(strdata) {
kglist_success_jsonpCallback(strdata.data.lists, url_s, url_p);//info
$(".GS_KG").hide();
$(".JP_KG").show();
$('html,body').animate({
scrollTop: '0px'
}, 200)
}
})
}
function kglist_success_jsonpCallback(data, kid, pn) {
jp_lb = '[';var myss,mysss;
$.each(data, function(k, v) {
jp_lb += '{mp3:"http://s.wo0.cn/o.php/KUGOU_' + v.FileHash + '.mp3",title:"' + safeStr(v.FileName) + '"},'//hash filename HQFileHash MvHash SQFileHash
});
jp_lb += ']';
eval("kugou_lb=" + jp_lb);
WNJP.setPlaylist(kugou_lb);
WNJP.play(0);
lb_lb = '';
$.each(data, function(k, v) {
if (k % 2 == 0) {
myxo = 'style="background-color: rgba(255, 255, 255, 0.3);"'
} else {
myxo = 'style="background-color: rgba(185, 185, 185, 0.5);"'
}
if ((v.HQExtName).indexOf("mp3") > -1) {
myss = ' <a href="http://s.wo0.cn/o.php/KUGOU_' + v.HQFileHash + '.mp3" download="' + safeStr(v.FileName) + '.mp3">HQ</a> ';
}else{myss = ' '}
if ((v.SQExtName).indexOf("flac") > -1) {
mysss = ' <a href="http://s.wo0.cn/o.php/KUGOU_' + v.SQFileHash + '.mp3" download="' + safeStr(v.FileName) + '.flac">SQ</a> ';
}else{mysss = ' '}
if (parseInt(v.MvType) > 0) {
myssss = ' <a href="javascript:JP_ADD(\'m4v,mv,http://s.wo0.cn/o.php/KUGOU_' + v.MvHash + '.mkv\')">MV</a> ';
}else{myssss = ' '}
lb_lb += '<div class="list-group-item" ' + myxo + '><span class="badge"> <a href="http://s.wo0.cn/o.php/KUGOU_' + v.FileHash + '.mp3" download="' + safeStr(v.FileName) + '.mp3"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a> </span><a href="javascript:WNJP.play(' + k + ');"><p class="txt"><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> ' + safeStr(v.FileName) + '</a></p></a></div>'
});
lb_lb += '';
if ((parseInt(pn) - 5) <= 0) {
pns = 1
} else {
pns = (parseInt(pn) - 5)
}
lb_fy = '</div><div class="text-center"><div class="pagination" style="margin:3px 0 12px 0;"><ul class="pagination" style="margin:0 0 38px;"><li><a href="javascript:KUGOU(\'' + kid + '@' + pns + '\');"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></a></li>';
for (var j = parseInt(pn) + 1; j < parseInt(pn) + 5; j++) {
lb_fy += '<li><a href="javascript:KUGOU(\'' + kid + '@' + j + '\');">' + j + '</a></li>'
}
lb_fy += '<li><a href="javascript:KUGOU(\'' + kid + '@' + (parseInt(pn) + 5) + '\');"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li><li><a class="back-to-top" href="#top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></a></li></ul></div>';
if (typeof(lb_fy) == "undefined" || parseInt(data.length) <= 3) {
lb_fy = ''
}
$("#JP_HL").html(lb_lb + lb_fy)
}
function LUA(url,str,strp){
document.title='@0@@url="'+url+'"'
+'Http.get(url,function(code,cont)'
+'if code ~= 200 then'
+'activity.finish()'
+'end'
+'data = tostring(cont)'
+'复制文本(data)'
+'加载js("wyyyslist_success_jsonpCallback(\'"..data.."\','+str+','+strp+')")'
+'end@@0@';
return('');
}
function WYYYSS(lsrc) {
if (lsrc.indexOf("@") > -1) {
myx = (/^(.+)@([0-9]+)$/g).exec(lsrc);
url_s = myx[1];
url_p = myx[2];
} else {
url_s = lsrc;
url_p = 1
}
return QQYY('http://s.wo0.cn/php/163.php?so='+url_s+'&p='+url_P+'');
/*
var url="https://apimusic.postgraduate.top/search?offset=" + (url_p*30) + "&limit=30&keywords="+url_s+"";
LUA(url,url_s,url_p);
wyyyslist_success_jsonpCallback(LUA(url,url_s,url_p),url_s,url_p);
*/
}
function wyyyslist_success_jsonpCallback(data, kid, pn) {
jp_lb = '[';var myss,mysss;
$.each(data.result.songs, function(k, v) {
jp_lb += '{mp3:"http://music.163.com/song/media/outer/url?id=' + v.id + '.mp3",title:"' + safeStr(v.name) + '"},'
});
jp_lb += ']';
eval("wyyys_lb=" + jp_lb);
WNJP.setPlaylist(wyyys_lb);
WNJP.play(0);
lb_lb = '';
$.each(data.result.songs, function(k, v) {
if (k % 2 == 0) {
myxo = 'style="background-color: rgba(255, 255, 255, 0.3);"'
} else {
myxo = 'style="background-color: rgba(185, 185, 185, 0.5);"'
}
lb_lb += '<div class="list-group-item" ' + myxo + '><span class="badge"> <a href="http://music.163.com/song/media/outer/url?id=' + v.id + '.mp3" download="' + safeStr(v.name) + '.mp3"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span></a> </span><a href="javascript:WNJP.play(' + k + ');"><p class="txt"><span class="glyphicon glyphicon-headphones" aria-hidden="true"></span> ' + safeStr(v.name) + '</a></p></a></div>'
});
lb_lb += '';
if ((parseInt(pn) - 5) <= 0) {
pns = 1
} else {
pns = (parseInt(pn) - 5)
}
lb_fy = '</div><div class="text-center"><div class="pagination" style="margin:3px 0 12px 0;"><ul class="pagination" style="margin:0 0 38px;"><li><a href="javascript:WYYY(\'' + kid + '@' + pns + '\');"><span class="glyphicon glyphicon-menu-left" aria-hidden="true"></span></a></li>';
for (var j = parseInt(pn) + 1; j < parseInt(pn) + 5; j++) {
lb_fy += '<li><a href="javascript:WYYY(\'' + kid + '@' + j + '\');">' + j + '</a></li>'
}
lb_fy += '<li><a href="javascript:WYYY(\'' + kid + '@' + (parseInt(pn) + 5) + '\');"><span class="glyphicon glyphicon-menu-right" aria-hidden="true"></span></a></li><li><a class="back-to-top" href="#top"><span class="glyphicon glyphicon-chevron-up" aria-hidden="true"></span></a></li></ul></div>';
if (typeof(lb_fy) == "undefined" || parseInt(data.length) <= 3) {
lb_fy = ''
}
//PAjaxData({"html":""+lb_lb + lb_fy+"","pageTitle":""+kid+"","id":""+times+""},kid);
$("#JP_HL").html(lb_lb + lb_fy)
}
function SGDJ(lsrc) {
return QQYY('http://s.wo0.cn/o.php/SGDJ_' + lsrc + '.jsonp?&p=1')
}
function KANSP(lsrc) {
return QQYY('http://s.wo0.cn/o.php/KAN360_' + lsrc + '.jsonp?@QQYY@')
}
function ZYSOTXT(lsrc,xxx) {
return QQYY('http://s.wo0.cn/o.php/ZYSO_' + lsrc + '-1-S00' + xxx + '.txt?@all@@&pg=1')
}
function YYT(lsrc) {
return QQYY('http://s.wo0.cn/php/yinyuetai.php?yyt=' + lsrc + '&p=1')
}
function ZDZY(lsrc) {
return QQYY('http://s.wo0.cn/o.php/ZYSO_' + lsrc + '-1-SO.jsonp?@all@')
}
function WYYY(lsrc) {
return QQYY('http://s.wo0.cn/o.php/WYYY_' + lsrc + '.jsonp?&p=1')
}
function YYHDJ(lsrc) {
QQYY('http://s.wo0.cn/o.php/YYHDJ_'+lsrc+'.jsonp?&p=1')
}
function MEIPAI(lsrc) {
return QQYY('http://s.wo0.cn/php/meipai.php?j=' + lsrc + '&p=1')
}
function AIPAISO(lsrc) {
return QQYY('http://s.wo0.cn/php/aipai.php?so=' + lsrc + '&p=1')
}
function KUGOUS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/KUGOU_' + lsrc + '.jsonp')
}
function APKS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/ZDFS_' + lsrc + '.jsonp?@apk@&pg=1')
}
function KUWOS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/KUWO_' + lsrc + '.jsonp?&p=0')
}
function XIAMIS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/XIAMI_' + lsrc + '.jsonp')
}
function MIGUS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/MIGU_' + lsrc + '.jsonp?&p=1')
}
function YYSQ(lsrc) {
return QQYY('http://s.wo0.cn/o.php/YYMV_' + lsrc + '-1.jsonp')
}
function TAOBAOSO(lsrc) {
return QQYY('http://s.wo0.cn/php/tbke.php?so=' + lsrc + '&pg=1&@tbke@.json')
}
function XMLYFM(lsrc) {
return QQYY('http://s.wo0.cn/php/xmly.php?lid=' + lsrc + '&p=1')
}
function PANDA(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?lid=' + lsrc + '&p=1')
}
function YZBTV(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?yzbqid=' + lsrc + '&p=1')
}
function YZBSO(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?yzbso=' + lsrc + '&pg=1&@yzbtv@.json')
}
function DOUYU(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?dylid=' + lsrc + '&p=1')
}
function HUAJ(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?hjlid=' + lsrc + '&p=1')
}
function HUAJSO(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?hjso=' + lsrc + '&p=1')
}
function LZTVSO(lsrc) {
return QQYY('http://s.wo0.cn/o.php/LZZB_' + lsrc + '.jsonp?&p=0')
}
function BLIBLI(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?blilid=' + lsrc + '&p=1')
}
function QQDJS(lsrc) {
return QQYY('http://s.wo0.cn/o.php/QQZB_' + lsrc + '.jsonp?&p=1')
}
function ZQTV(lsrc) {
return QQYY('http://s.wo0.cn/php/panda.php?zqlid=' + lsrc + '&p=1')
}
function HUYATV(lsrc) {
return QQYY('http://s.wo0.cn/o.php/HYZB_' + lsrc + '.jsonp?&p=1')
}
function XMLYSO(lsrc) {
if (lsrc.indexOf("@") > -1) {
myx = (/^(.+)@([0-9]+)$/g).exec(lsrc);
url_s = myx[1];
url_p = myx[2];
return QQYY('http://s.wo0.cn/php/xmly.php?so=' + url_s + '&pg=' + url_p + '&@xmlyfm@.json')
} else {
return QQYY('http://s.wo0.cn/php/xmly.php?so=' + lsrc + '&pg=1&@xmlyfm@.json')
}
}
function MGTV(ty_iv, pn, st) {
return('');
}
function mgtvlist_success_jsonpCallback(data, ty_iv, pn, st) {
return('');
}
function mgtvlists_success_jsonpCallback(data, ty_iv, pn, st) {
return('');
}
function mgtv_vid_pp(str) {
return('');
}
function mgtv_vid_src(lid) {
return('');
}
function mgtv_vid_list_success_jsonpCallback(strdata) {
return('');
}
function mgtv_vid_id(data) {
return('');
}
function VIPJX(data) {
$(".jp-jplayer").jPlayer("stop");
var sUserAgent = navigator.userAgent.toLowerCase();
if (sUserAgent.match(/(iphone|ipad|ipod|android|symbianos|windows phone|ucweb|BlackBerry|midp|mobile)/i)) {
mys = '<h5>友情提醒:以下为第三方-资源||且勿相信视频内广告信息</h5><hr><a class="btn btn-default" href="https://api.sigujx.com/?url=' + data + '" target="_Blank">25-思古</a> <a class="btn btn-default" href="https://jx.ivito.cn/?url=' + data + '" target="_Blank">30-WD</a> <a class="btn btn-default" href="https://www.ckmov.vip/api.php?url=' + data + '" target="_Blank">28-MOV</a> <a class="btn btn-default" href="https://www.administratorw.com/video.php?url=' + data + '" target="_Blank">21-无名</a> <a class="btn btn-default" href="http://17kyun.com/api.php?url=' + data + '" target="_Blank">24-17kyun</a> <a class="btn btn-default" href="https://jx.618g.com/?url=' + data + '" target="_Blank">-1</a> <a class="btn btn-default" href="https://www.myxin.top/jx/api/?url=' + data + '" target="_Blank">-2</a> <a class="btn btn-default" href="https://www.kkflv.com/index.php?url=' + data + '" target="_Blank">-3</a> <a class="btn btn-default" href="http://jiexi.380k.com/?url=' + data + '" target="_Blank">4-黑云</a> <a class="btn btn-default" href="http://api.baiyug.vip/index.php?url=' + data + '" target="_Blank">5-百域</a> <a class="btn btn-default" href="https://jx40.net/url=' + data + '" target="_Blank">6-40</a> <a class="btn btn-default" href="http://okjx.cc/?url=' + data + '" target="_Blank">7-OK</a> <a class="btn btn-default" href="http://jiexi.071811.cc/jx2.php?url=' + data + '" target="_Blank">-8</a> <a class="btn btn-default" href="https://jx.99yyw.com/99/?url=' + data + '" target="_Blank">-9</a> <a class="btn btn-default" href="http://jx.618ge.com/?url=' + data + '" target="_Blank">-10</a> <a class="btn btn-default" href="http://jx.598110.com/?url=' + data + '" target="_Blank">11-598110</a> <a class="btn btn-default" href="https://cdn.yangju.vip/k/?url=' + data + '" target="_Blank">-12</a> <a class="btn btn-default" href="https://j.wfss100.com/?url=' + data + '" target="_Blank">-13</a> <a class="btn btn-default" href="https://vip.bljiex.com/?v=' + data + '" target="_Blank">14-BL</a> <a class="btn btn-default" href="https://cs.drgxj.com/?url=' + data + '" target="_Blank">-15</a> <a class="btn btn-default" href="https://api.sigujx.com/jx/?url=' + data + '" target="_Blank">-16</a> <a class="btn btn-default" href="http://jx.wslmf.com/?url=' + data + '" target="_Blank">-17</a> <a class="btn btn-default" href="https://api.47ks.com/webcloud/?v=' + data + '" target="_Blank">18-47</a> <a class="btn btn-default" href="http://jx.du2.cc/?url=' + data + '" target="_Blank">19-二度</a> <a class="btn btn-default" href="https://www.1717yun.com/jx/ty.php?url=' + data + '" target="_Blank">-20</a> <a class="btn btn-default" href="https://vip.mpos.ren/v/?url=' + data + '" target="_Blank">-22</a> <a class="btn btn-default" href="http://jqaaa.com/jx.php?url=' + data + '" target="_Blank">23-金桥</a> <a class="btn btn-default" href="http://jx.idc126.net/jx/?url=' + data + '" target="_Blank">26-126</a> <a class="btn btn-default" href="http://vip.jlsprh.com/?url=' + data + '" target="_Blank">-27</a> </a> </a> <a class="btn btn-default" href="https://cs.drgxj.com/?url=' + data + '" target="_Blank">29-DR</a> <a class="btn btn-default" href="https://z1.m1907.cn/?jx=' + data + '" target="_Blank">31-1907</a> <a class="btn btn-default" href="https://cdn.yangju.vip/k/?url=' + data + '" target="_Blank">32-YJ</a> <a class="btn btn-default" href="https://vip.mcyanyu.com/index.php?url=' + data + '" target="_Blank">33-JA</a> <a class="btn btn-default" href="https://jx.rdhk.net/?v=' + data + '" target="_Blank">34-RD</a> <a class="btn btn-default" href="https://www.kpezp.cn/jlexi.php?url=' + data + '" target="_Blank">35-XJ</a> <a class="btn btn-default" href="https://api.lhh.la/vip/?url=' + data + '" target="_Blank">36-HHL</a> <a class="btn btn-default" href="https://jx.dianyingguan.cn/?url=' + data + '" target="_Blank">37-XL</a> <a class="btn btn-default" href="https://jx.mw0.cc/?url=' + data + '" target="_Blank">38-XL</a> <a class="btn btn-default" href="https://www.33tn.cn/?url=' + data + '" target="_Blank">39-33</a> <a class="btn btn-default" href="https://py.ha12.xyz/sos/index.php?url=' + data + '" target="_Blank">40-HA12</a> <a class="btn btn-default" href="https://www.8090g.cn/?url=' + data + '" target="_Blank">41-8090</a> <a class="btn btn-default" href="https://vip.mpos.ren/v/?url=' + data + '" target="_Blank">42-人人</a> <a class="btn btn-default" href="http://jx.cesms.cn/?url=' + data + '" target="_Blank">43-大亨</a> <a class="btn btn-default" href="https://660e.com/?url=' + data + '" target="_Blank">44-乐乐</a> <a class="btn btn-default" href="https://www.administratorw.com/video.php?url=' + data + '" target="_Blank">45-无名2</a> <a class="btn btn-default" href="http://j.zz22x.com/jx/?url=' + data + '" target="_Blank">46-花园</a> <a class="btn btn-default" href="https://api.123zx.net/m3u8/play.html?id=' + data + '" target="_Blank">447-33uu</a> <a class="btn btn-default" href="https://2.08bk.com/?url=' + data + '" target="_Blank">48-小七</a> <a class="btn btn-default" href="https://jx.ab33.top/vip/?url=' + data + '" target="_Blank">52-ab</a> <a class="btn btn-default" href="https://fy.maosp.me:7788/?url=' + data + '" target="_Blank">猫视频</a> ';
$('#MModal').modal({
show: true
})
} else {
mys = '<h5>友情提醒:以下为第三方-资源||且勿相信视频内广告信息</h5><hr><a class="btn btn-default" href="https://api.sigujx.com/?url=' + data + '" target="_Blank">25-思古</a> <a class="btn btn-default" href="https://jx.ivito.cn/?url=' + data + '" target="_Blank">30-WD</a> <a class="btn btn-default" href="https://www.ckmov.vip/api.php?url=' + data + '" target="_Blank">28-MOV</a> <a class="btn btn-default" href="https://www.administratorw.com/video.php?url=' + data + '" target="_Blank">21-无名</a> <a class="btn btn-default" href="http://17kyun.com/api.php?url=' + data + '" target="_Blank">24-17kyun</a> <a class="btn btn-default" href="https://jx.618g.com/?url=' + data + '" target="_Blank">-1</a> <a class="btn btn-default" href="https://www.myxin.top/jx/api/?url=' + data + '" target="_Blank">-2</a> <a class="btn btn-default" href="https://www.kkflv.com/index.php?url=' + data + '" target="_Blank">-3</a> <a class="btn btn-default" href="http://jiexi.380k.com/?url=' + data + '" target="_Blank">-4-黑云</a> <a class="btn btn-default" href="http://api.baiyug.vip/index.php?url=' + data + '" target="_Blank">5-百域</a> <a class="btn btn-default" href="https://jx40.net/url=' + data + '" target="_Blank">6-40</a> <a class="btn btn-default" href="http://okjx.cc/?url=' + data + '" target="_Blank">7-OK</a> <a class="btn btn-default" href="http://jiexi.071811.cc/jx2.php?url=' + data + '" target="_Blank">-8</a> <a class="btn btn-default" href="https://jx.99yyw.com/99/?url=' + data + '" target="_Blank">-9</a> <a class="btn btn-default" href="http://jx.618ge.com/?url=' + data + '" target="_Blank">-10</a> <a class="btn btn-default" href="http://jx.598110.com/?url=' + data + '" target="_Blank">11-598110</a> <a class="btn btn-default" href="https://cdn.yangju.vip/k/?url=' + data + '" target="_Blank">-12</a> <a class="btn btn-default" href="https://j.wfss100.com/?url=' + data + '" target="_Blank">-13</a> <a class="btn btn-default" href="https://vip.bljiex.com/?v=' + data + '" target="_Blank">14-BL</a> <a class="btn btn-default" href="https://cs.drgxj.com/?url=' + data + '" target="_Blank">-15</a> <a class="btn btn-default" href="https://api.sigujx.com/jx/?url=' + data + '" target="_Blank">-16</a> <a class="btn btn-default" href="http://jx.wslmf.com/?url=' + data + '" target="_Blank">-17</a> <a class="btn btn-default" href="https://api.47ks.com/webcloud/?v=' + data + '" target="_Blank">18-47</a> <a class="btn btn-default" href="http://jx.du2.cc/?url=' + data + '" target="_Blank">19-二度</a> <a class="btn btn-default" href="https://www.1717yun.com/jx/ty.php?url=' + data + '" target="_Blank">-20</a> <a class="btn btn-default" href="https://vip.mpos.ren/v/?url=' + data + '" target="_Blank">-22</a> <a class="btn btn-default" href="http://jqaaa.com/jx.php?url=' + data + '" target="_Blank">23-金桥</a> <a class="btn btn-default" href="http://jx.idc126.net/jx/?url=' + data + '" target="_Blank">26-126</a> <a class="btn btn-default" href="http://vip.jlsprh.com/?url=' + data + '" target="_Blank">-27</a> </a> <a class="btn btn-default" href="https://cs.drgxj.com/?url=' + data + '" target="_Blank">29-DR</a> <a class="btn btn-default" href="https://z1.m1907.cn/?jx=' + data + '" target="_Blank">31-1907</a> <a class="btn btn-default" href="https://cdn.yangju.vip/k/?url=' + data + '" target="_Blank">32-YJ</a> <a class="btn btn-default" href="https://vip.mcyanyu.com/index.php?url=' + data + '" target="_Blank">33-JA</a> <a class="btn btn-default" href="https://jx.rdhk.net/?v=' + data + '" target="_Blank">34-RD</a> <a class="btn btn-default" href="https://www.kpezp.cn/jlexi.php?url=' + data + '" target="_Blank">35-XJ</a> <a class="btn btn-default" href="https://api.lhh.la/vip/?url=' + data + '" target="_Blank">36-HHL</a> <a class="btn btn-default" href="https://jx.dianyingguan.cn/?url=' + data + '" target="_Blank">37-XL</a> <a class="btn btn-default" href="https://jx.mw0.cc/?url=' + data + '" target="_Blank">38-XL</a> <a class="btn btn-default" href="https://www.33tn.cn/?url=' + data + '" target="_Blank">39-33</a> <a class="btn btn-default" href="https://py.ha12.xyz/sos/index.php?url=' + data + '" target="_Blank">40-HA12</a> <a class="btn btn-default" href="https://www.8090g.cn/?url=' + data + '" target="_Blank">41-8090</a> <a class="btn btn-default" href="https://vip.mpos.ren/v/?url=' + data + '" target="_Blank">42-人人</a> <a class="btn btn-default" href="http://jx.cesms.cn/?url=' + data + '" target="_Blank">43-大亨</a> <a class="btn btn-default" href="https://660e.com/?url=' + data + '" target="_Blank">44-乐乐</a> <a class="btn btn-default" href="https://www.administratorw.com/video.php?url=' + data + '" target="_Blank">45-无名2</a> <a class="btn btn-default" href="http://j.zz22x.com/jx/?url=' + data + '" target="_Blank">46-花园</a> <a class="btn btn-default" href="https://api.123zx.net/m3u8/play.html?id=' + data + '" target="_Blank">447-33uu</a> <a class="btn btn-default" href="https://2.08bk.com/?url=' + data + '" target="_Blank">48-小七</a> <a class="btn btn-default" href="https://jx.ab33.top/vip/?url=' + data + '" target="_Blank">52-ab</a> <a class="btn btn-default" href="https://fy.maosp.me:7788/?url=' + data + '" target="_Blank">猫视频</a> ';
$('#MModal').modal({
show: true
})
}
//PAjaxData({"html":""+mys+"","pageTitle":""+data+"","id":""+times+""},data);
$("#KJ_IF").html(mys)
}
function KJ_GB() {
$('#MModal').on('hidden.bs.modal', function() {
$("#word").hide();
$("#play_header").empty().hide();
$("#playad").empty().hide();
$("#KJ_IF").attr("src", '');
$("#KJ_IF").attr("height", '0');
$("#KJ_IF").attr("width", '0');
window.parent.getElementById("#KJ_IF").style.display = "none";
$('#MModal').modal({
hide: true
})
})
}
function LETV(lsrc) {
return('');
}
function LETV_lid(lid) {
return('');
}
function LETV_vid_list_success_jsonpCallback(strdata) {
return('');
}