flb.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. $(function(){
  2. /*
  3. * 调用的方法
  4. * */
  5. PublicAction.AjaxSend(
  6. {
  7. CORID:'wa_submit', /*操作ID*/
  8. }
  9. );
  10. // 报名弹窗
  11. $('.beg-cls').on('click',function(){
  12. $('.beg-box').hide(function(){
  13. $('.beg').hide(function(){
  14. $('.beg-box input[name="hid"]').val('0');
  15. })
  16. })
  17. })
  18. $('.indebtn').on('click',function(){
  19. var oid = $(this).attr('data-id');
  20. $('.beg-box input[name="hid"]').val(oid);
  21. $('.beg').show(function(){
  22. $('.beg-box').show(function(){})
  23. })
  24. })
  25. })
  26. new Swiper('.m_fxs', {
  27. loop : true,
  28. spaceBetween: 10,
  29. centeredSlides: true,
  30. slidesPerView: 'auto',
  31. touchRatio: 0.5,
  32. slideToClickedSlide: true,
  33. pagination: '.swiper-pagination',
  34. });
  35. new Swiper('.m_fxss', {
  36. loop : true,
  37. spaceBetween: 10,
  38. centeredSlides: true,
  39. slidesPerView: 'auto',
  40. touchRatio: 0.5,
  41. slideToClickedSlide: true,
  42. pagination: '.swiper-pagination',
  43. });
  44. jQuery(".phmarani_x3_bottom").slide({
  45. mainCell:".bd ul",
  46. autoPlay:true,
  47. effect:"topMarquee",
  48. vis:1,
  49. interTime:80,
  50. trigger:"click",
  51. });
  52. // $("#indexReport-list li").each(function(){
  53. // var obj=$(this);
  54. // var dw=obj.find(".list_m").eq(0).width();
  55. // var cw=obj.find(".scrollText span").eq(0).width();
  56. // var cx=0;
  57. // //宽度超出当前content宽度才滚动
  58. // if(cw>dw){
  59. // var scrollval=null;//滚动事件变量
  60. // obj.find(".scrollText span").eq(0).append('<i style="width:30px; display:inline-block"></i>'+obj.find(".scrollText span").eq(0).html());
  61. // scrollval=setInterval(function(){
  62. // obj.find(".scrollText span").eq(0).css({
  63. // "left":"-"+cx+"px"
  64. // })
  65. // if(cx>(cw-dw)+dw)
  66. // cx=0;
  67. // cx++;
  68. // },25);
  69. // }
  70. // });
  71. $('.m_video_img').on('click',function(){ //处理视频播放图标
  72. var that = $(this);
  73. var oid = that.siblings('video.m_video_sp').attr('id');
  74. var _video = document.getElementById(oid);
  75. _video.play(); //点击图标视频播放
  76. that.siblings('video.m_video_sp').attr('controls','controls'); //点击 显示默认的控件
  77. that.hide();
  78. })
  79. $('.mzxbox_title span').on('click',function(){
  80. var _dataid =$(this).attr('dataid');
  81. $('.mzxbox .mzx').hide();
  82. $('.mzxbox .mzx[dataid="'+_dataid+'"]').show();
  83. $(this).attr('class','on').siblings().attr('class','');
  84. })
  85. $('.mzxbox_title span').eq(0).click();