yahu.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. // 2018-10-11 轮播图
  2. var mySwiper1= new Swiper("#yw_swiper",{
  3. loop : true,
  4. loopedSlides:4,
  5. // autoplay:5500,
  6. autoplayDisableOnInteraction : false,
  7. // 如果需要分页器
  8. pagination: '.yw_swiper-pagination',
  9. slidesPerView :"auto"
  10. });
  11. $('.m_list_box ul li').eq(0).attr('class','on');
  12. $('.m_lplist[data-id="0"]').show();
  13. $('.m_list_box ul li').on('click',function(){
  14. var _dataid = $(this).attr("data-id");
  15. $('.m_lplist').hide();
  16. $('.m_lplist[data-id="'+_dataid+'"]').show();
  17. $(this).attr('class','on').siblings().attr('class','');
  18. $('.m_bottom_text').hide();
  19. $(".m_lplist_bottom p").attr('switchid','false');
  20. $(".m_lplist_bottom p").find('img').attr('src','/zt/yahu20190708/image/yh4.png');
  21. })
  22. $(".m_xial_top").click(function () {
  23. $(this).parent().find('.m_xial_xl').slideToggle();
  24. });
  25. $(".m_lplist_bottom p").click(function () {
  26. $(this).parent().find('.m_bottom_text').slideToggle();
  27. var _switchid = $(this).attr('switchid');
  28. if (_switchid == "false") {
  29. $(this).removeClass('on');
  30. $(this).find('img').attr('src','/zt/yahu20190708/image/yh04.png');
  31. $(this).attr('switchid','true');
  32. }else{
  33. $(this).addClass('on');
  34. $(this).find('img').attr('src','/zt/yahu20190708/image/yh4.png');
  35. $(this).attr('switchid','false');
  36. }
  37. });
  38. PublicAction.AjaxSend({CORID:'m_bm_bottom'/*操作ID*/});