common.js 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. /**
  2. *直播间js
  3. *编码utf8
  4. */
  5. //设置礼物id giftid,礼物需要金额giftmoney,余额money
  6. var giftmoney='',money='',giftimg='',giftname='';
  7. var myVideo=document.getElementById("video1");
  8. var chattool=$(".chat-tool"),
  9. bglancemoney=$(".bglance_money");
  10. //过滤函数
  11. function filter(str) {
  12. // 多个敏感词,这里直接以数组的形式展示出来
  13. var arrMg = JSON.parse(field);
  14. //console.log(arrMg);
  15. // 显示的内容--showContent
  16. var showContent = str;
  17. //console.log(showContent);
  18. // 正则表达式
  19. // \d 匹配数字
  20. for (var i = 0; i < arrMg.length; i++) {
  21. // 创建一个正则表达式
  22. var r = new RegExp(arrMg[i], "ig");
  23. var re='';
  24. for(var n=0;n<arrMg[i].length;n++){
  25. re+='*';
  26. }
  27. showContent = showContent.replace(r, re);
  28. }
  29. // 显示的内容--showInput
  30. //console.log(showContent);
  31. return showContent;
  32. }
  33. var Ctrfn={
  34. is_countdown : !1,
  35. countdown_handler : null,
  36. talkBtn:function(e){
  37. if(!$(".chat-tool").is(":hidden")){
  38. $(".chat-tool").hide();
  39. }
  40. $(".chat_input").show();
  41. $("#message").focus();
  42. $(".section1").click(function(e) {
  43. var target = $(e.target);
  44. //点击其他地方隐藏礼物列表
  45. if(!target.is('#talk-btn')&&!target.is('.chat_input')&&!target.is('.chat_input *')&&!target.is('#gift-btn')) {
  46. if($(".chat-tool").is(":hidden")){
  47. $(".chat-tool").show();
  48. }
  49. $(".chat_input").hide();
  50. $(".chat_barrage ").removeClass("animte");
  51. fly=""
  52. }
  53. });
  54. },
  55. giftTool:function(){
  56. if(!$(".chat-tool").is(":hidden")){
  57. $(".chat-tool").hide();
  58. }
  59. $(".chat_gift").css({"opacity":"1","z-index":"22","display":"block"});
  60. $(".section1").click(function(e) {
  61. var target = $(e.target);
  62. //点击其他地方隐藏礼物列表
  63. if(!target.is('.chat_gift') && !target.is(".chat_gift *") && !target.is("#gift-btn") && !target.is("#talk-btn")) {
  64. $(".chat_gift").css({"opacity":"0","z-index":"-1"});
  65. $(".sel").remove();
  66. if($(".chat-tool").is(":hidden")){
  67. $(".chat-tool").show();
  68. }
  69. }
  70. });
  71. },
  72. // //点击发送信息设置
  73. onmessage:function(url){
  74. if($("#message").val() == ""){
  75. Txbb.Pop('toast', '消息不能为空...','center');
  76. return;
  77. }
  78. if(User){
  79. this.flymsgfn(url);
  80. }
  81. },
  82. flymsgfn:function(url){
  83. if(fly=="FlyMsg"){
  84. $.ajax({
  85. type: 'POST',
  86. url: url,
  87. data:{"token":User.token,"roomid":room_id,"content":$("#message").val()},
  88. dataType:'json',
  89. success: function(data){
  90. if((Number($(".bglance_money").text())-100)<0){
  91. $(".bglance_money").text(0);
  92. Txbb.Pop('toast', '余额不足,请充值...');
  93. }else{
  94. $(".bglance_money").text(Number($(".bglance_money").text())-100);
  95. }
  96. }
  97. });
  98. }else{
  99. var txt=$("#message").val();
  100. txt=filter(txt);
  101. var msg = '{"msg":[{"_method_":"SendMsg","action":0,"ct":"'+txt+'","msgtype":"2","uid":"'+User.id+'","uname":"'+User.user_nicename+'"}],"retcode":"000000","retmsg":"OK"}';
  102. Socket.emitData('broadcast',msg);
  103. }
  104. $("#message").val("");
  105. $(".chat_input").hide();
  106. chattool.show();
  107. $(".chat_input > .chat_barrage").removeClass("animte ");
  108. fly="";
  109. },
  110. init_screen:function(){
  111. var _top = 0;
  112. $(".chat_barrage_box > div").show().each(function () {
  113. var _left = $(window).width() - $(this).width()+200;
  114. var _height = $(window).height();
  115. _top = _top + 45;
  116. if (_top >= _height - 200) {
  117. _top = 40;
  118. }
  119. $(this).css({left: _left, top: _top});
  120. var time = 12000;
  121. // if ($(this).index() % 2 == 0) {
  122. // time = 12000;
  123. // }
  124. $(this).animate({left: "-" + _left + "px"}, time, function () {
  125. $(this).remove();
  126. });
  127. });
  128. },
  129. play:function(objbtn){
  130. objbtn.parent().hide();
  131. $(".jw-preview").hide();
  132. $(".down-bottom").hide();
  133. xg_player.play();
  134. if(!isWeixin && !User){
  135. //登录按钮显示
  136. $('#login-btn').show();
  137. $('.js-reg').show();
  138. }
  139. Socket.nodejsInit();
  140. },
  141. giftBtn:function(objbtn){
  142. var swiperSlide=$("#swiper-wrapper");
  143. //选中状态
  144. //除了当前礼物选中,其他的都移除状态
  145. swiperSlide.find(".selected").removeClass('selected');
  146. objbtn.find(".gift-select").addClass('selected');
  147. this.countdown_hide();
  148. },
  149. countdown_show:function() {
  150. var i = this;
  151. $(".gift-countdown-bg").show(),
  152. $(".gift-countdown-btn-time").html("5"),
  153. null !== this.countdown_handler && clearTimeout(this.countdown_handler),
  154. this.is_countdown = !0,
  155. this.seq = 0,
  156. this.countdown_handler = setTimeout(function() {
  157. i.countdown()
  158. },
  159. 100)
  160. },
  161. countdown_hide : function() {
  162. $(".gift-countdown-bg").hide(),null !== this.countdown_handler && clearTimeout(this.countdown_handler),this.is_countdown = !1
  163. },
  164. countdown:function() {
  165. var i = this,
  166. e = parseInt($(".gift-countdown-btn-time").html()) - 1;
  167. e > 0 ? ($(".gift-countdown-btn-time").html(e), this.countdown_handler = setTimeout(function() {
  168. i.countdown()
  169. },
  170. 1000)) : (null !== this.countdown_handler && clearTimeout(this.countdown_handler), this.countdown_handler = null, this.is_countdown = !1, this.countdown_hide(), this.seq = 0)
  171. },
  172. //点击发送礼物按钮
  173. sendBtn:function(){
  174. var _this=this;
  175. var selected=$(".gift-select.selected");
  176. if(selected.length<1){
  177. _this.countdown_hide();
  178. Txbb.Pop('toast', '请选择礼物');
  179. return;
  180. }
  181. var giftmoney=selected.attr('data-money');
  182. var giftid=selected.attr('data-id');
  183. if( Number(giftmoney) > Number(User.coin) ){
  184. _this.countdown_hide();
  185. Txbb.Pop('toast', '余额不足,请充值');
  186. return;
  187. }
  188. //如果没有选中礼物
  189. if(giftid==''){
  190. _this.countdown_hide();
  191. Txbb.Pop('toast', '请选择礼物...');
  192. return;
  193. }
  194. $.ajax({
  195. type:"POST",
  196. url:'/wxshare/Share/sendGift',
  197. dataType:'json',
  198. data:{giftid:giftid,touid:to_uid,stream:room_id,"token":User.token},
  199. success:function(data){
  200. //console.log(data);
  201. if(data.errno==0){
  202. bglancemoney.text(data.coin);
  203. if(data.type=='0'){
  204. _this.countdown_show();
  205. }
  206. User.level=data.level;
  207. User.coin=data.coin;
  208. var msg = '{"retcode":"000000","retmsg":"ok","msg":[{"_method_":"SendGift","action":"0","ct":"'+data.gifttoken+'","msgtype":"1","roomnum":"'+to_uid+'","livename":"'+data.livename+'","uid":"'+data.uid+'","uname":"'+User.user_nicename+'","uhead":"'+User.avatar+'","usertype":"'+ User.usertype+'"}]}';
  209. Socket.emitData('broadcast',msg);
  210. }else{
  211. _this.countdown_hide();
  212. Txbb.Pop('toast',data.msg );
  213. return;
  214. }
  215. }
  216. })
  217. },
  218. userFollowed:function(objbtn){
  219. if(objbtn.attr("data-follow")==0){
  220. objbtn.text("已关注").css("background","rgba(235,79,56,1)");
  221. objbtn.attr("data-follow","1");
  222. }else{
  223. objbtn.text("关注").css("background","rgba(235,79,56,0.6)");;
  224. objbtn.attr("data-follow","0");
  225. }
  226. }
  227. }
  228. $(function(){
  229. if(isIOS){
  230. //IOS键盘问题
  231. $("input").on("blur",function () {
  232. var currentPosition,timer;
  233. var speed=1;
  234. timer=setInterval(function(){
  235. currentPosition=document.documentElement.scrollTop || document.body.scrollTop;
  236. currentPosition-=speed;
  237. window.scrollTo(0,currentPosition);//页面向上滚动
  238. currentPosition+=speed;
  239. window.scrollTo(0,currentPosition);//页面向下滚动
  240. clearInterval(timer);
  241. },100);
  242. })
  243. }
  244. })