zt.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. $(function(){
  2. $('.itemlist li').hover(function(){
  3. $(this).addClass('on').siblings().removeClass('on')
  4. var idx = $(this).index()
  5. $('.itembox .item').eq(idx).show().siblings().hide()
  6. })
  7. $('.fbitemlist li').hover(function(){
  8. var _this = $(this).parent().next('.fbbox')
  9. $(this).addClass('on').siblings().removeClass('on')
  10. var idx = $(this).index()
  11. _this.find('.item').eq(idx).show().siblings().hide()
  12. $('body').trigger("scroll");
  13. })
  14. $('.newslist').find('li').hover(function(){
  15. $(this).find('.tbox').removeClass('hide').siblings('.fbox').addClass('hide');
  16. $(this).siblings().find('.tbox').addClass('hide').siblings('.fbox').removeClass('hide');
  17. });
  18. $('.paihang li').click(function(){
  19. $(this).addClass('on').siblings().removeClass('on')
  20. var idx = $(this).index();
  21. $(this).parents('.rightitem').find('.newslist').eq(idx).show().siblings().hide();
  22. })
  23. })
  24. $(function(){
  25. var swiper = new Swiper('.swiperpic', {
  26. autoplay: true,
  27. pagination: {
  28. el: '.paginationpic',
  29. clickable :true,
  30. },
  31. loop:true,
  32. navigation: {
  33. nextEl: '.swiperpic-next',
  34. prevEl: '.swiperpic-prev',
  35. },
  36. });
  37. var swiper1 = new Swiper('.swiper-oz', {
  38. slidesPerView: 5,
  39. slidesPerGroup: 5,
  40. loop : true,
  41. spaceBetween: 10,
  42. navigation: {
  43. nextEl: '.oz-next',
  44. prevEl: '.oz-prev',
  45. },
  46. });
  47. //微信分享
  48. $(".share_vx").click(function() {
  49. if ($(".qrcodecov").length > 0) {
  50. $(".qrcodecov").show()
  51. } else {
  52. var html = '<div class="qrcodecov">' +
  53. '<div class="qrcode">' +
  54. '<p class="title">分享到微信朋友圈 <span class="qrcodecovclo">x</span></p>' +
  55. '<div id="qrcode">' +
  56. '</div>' +
  57. '<p>打开微信,点击底部的"发现",<br />' +
  58. '使用"扫一扫"即可将网页分享至朋友圈。</p>' +
  59. '</div>' +
  60. '</div>'
  61. $("body").append(html);
  62. var test = $(".share_vx").attr('v-href');
  63. jQuery('#qrcode').qrcode({
  64. width: 200,
  65. height: 200,
  66. text: test
  67. });
  68. }
  69. })
  70. $("body").on("click", ".qrcodecovclo", function() {
  71. $(".qrcodecov").hide()
  72. })
  73. // 地图切换
  74. $('.map .place').hover(function(){
  75. $(this).addClass('on').siblings().removeClass('on')
  76. var idx = $(this).data('id');
  77. $('.rightp .pitem').eq(idx).show().siblings().hide()
  78. })
  79. // 积分榜切换
  80. $('.jfb_b li').click(function(){
  81. $(this).addClass('on').siblings().removeClass('on');
  82. var idx = $(this).index();
  83. $(this).parent().next().find('.conitem').eq(idx).show().siblings().hide()
  84. })
  85. $('.jfb_s li').click(function(){
  86. $(this).addClass('on').siblings().removeClass('on');
  87. var idx = $(this).index();
  88. $(this).parent().next().find('.aitem').eq(idx).show().siblings().hide()
  89. })
  90. $('.efcitemlist li').click(function(){
  91. $(this).addClass('on').siblings().removeClass('on');
  92. var idx = $(this).index();
  93. $(this).parent().next().find('.item').eq(idx).show().siblings().hide()
  94. })
  95. // $('.jfbmore').click(function(){
  96. // $('.jqqdbox').show()
  97. // })
  98. // $('.iknow').click(function(){
  99. // $('.jqqdbox').hide()
  100. // })
  101. })