123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- $(function(){
- $('.itemlist li').hover(function(){
- $(this).addClass('on').siblings().removeClass('on')
- var idx = $(this).index()
- $('.itembox .item').eq(idx).show().siblings().hide()
- })
-
- $('.fbitemlist li').hover(function(){
- var _this = $(this).parent().next('.fbbox')
- $(this).addClass('on').siblings().removeClass('on')
- var idx = $(this).index()
- _this.find('.item').eq(idx).show().siblings().hide()
- $('body').trigger("scroll");
- })
- $('.newslist').find('li').hover(function(){
- $(this).find('.tbox').removeClass('hide').siblings('.fbox').addClass('hide');
- $(this).siblings().find('.tbox').addClass('hide').siblings('.fbox').removeClass('hide');
- });
- $('.paihang li').click(function(){
- $(this).addClass('on').siblings().removeClass('on')
- var idx = $(this).index();
- $(this).parents('.rightitem').find('.newslist').eq(idx).show().siblings().hide();
- })
- })
- $(function(){
- var swiper = new Swiper('.swiperpic', {
- autoplay: true,
- pagination: {
- el: '.paginationpic',
- clickable :true,
- },
- loop:true,
- navigation: {
- nextEl: '.swiperpic-next',
- prevEl: '.swiperpic-prev',
- },
- });
- var swiper1 = new Swiper('.swiper-oz', {
- slidesPerView: 5,
- slidesPerGroup: 5,
- loop : true,
- spaceBetween: 10,
- navigation: {
- nextEl: '.oz-next',
- prevEl: '.oz-prev',
- },
- });
- //微信分享
- $(".share_vx").click(function() {
- if ($(".qrcodecov").length > 0) {
- $(".qrcodecov").show()
- } else {
- var html = '<div class="qrcodecov">' +
- '<div class="qrcode">' +
- '<p class="title">分享到微信朋友圈 <span class="qrcodecovclo">x</span></p>' +
- '<div id="qrcode">' +
- '</div>' +
- '<p>打开微信,点击底部的"发现",<br />' +
- '使用"扫一扫"即可将网页分享至朋友圈。</p>' +
- '</div>' +
- '</div>'
- $("body").append(html);
- var test = $(".share_vx").attr('v-href');
- jQuery('#qrcode').qrcode({
- width: 200,
- height: 200,
- text: test
- });
- }
- })
- $("body").on("click", ".qrcodecovclo", function() {
- $(".qrcodecov").hide()
- })
-
-
- // 地图切换
- $('.map .place').hover(function(){
- $(this).addClass('on').siblings().removeClass('on')
- var idx = $(this).data('id');
- $('.rightp .pitem').eq(idx).show().siblings().hide()
- })
- // 积分榜切换
- $('.jfb_b li').click(function(){
- $(this).addClass('on').siblings().removeClass('on');
- var idx = $(this).index();
- $(this).parent().next().find('.conitem').eq(idx).show().siblings().hide()
- })
- $('.jfb_s li').click(function(){
- $(this).addClass('on').siblings().removeClass('on');
- var idx = $(this).index();
- $(this).parent().next().find('.aitem').eq(idx).show().siblings().hide()
- })
- $('.efcitemlist li').click(function(){
- $(this).addClass('on').siblings().removeClass('on');
- var idx = $(this).index();
- $(this).parent().next().find('.item').eq(idx).show().siblings().hide()
- })
- // $('.jfbmore').click(function(){
- // $('.jqqdbox').show()
- // })
- // $('.iknow').click(function(){
- // $('.jqqdbox').hide()
- // })
- })
|