// 图片宽高比固定 start function imgHeight() { // 图片列表 // var huanjingImgHeight = $(".huanjing-image").width() * 300 / 300; // $(".huanjing-image").css({ // "height": huanjingImgHeight + "px" // }); } // 图片宽高比固定 end $(window).resize(function() { imgHeight(); }) /* 微信弹窗 */ // function dkcf(){$('#wxnr').fadeIn("fast");$('#fdwx').fadeOut("fast");} // function gbcf(){$('#fdwx').fadeIn("slow");$('#wxnr').fadeOut("fast");} $(function(){ // 解决方案 start var tapNavWwiper = new Swiper('.tap-nav-swiper', { slidesPerView : 5, slidesPerGroup: 1, // observer:true, // observeParents:true, breakpoints: { // 380: { // slidesPerView: 3, // }, // 480: { // slidesPerView: 4, // }, // 768: { // slidesPerView: 5, // }, } }); // if (!(/msie [6|7|8|9]/i.test(navigator.userAgent))) {//判断非ie6789下执行 // (function () { // window.scrollReveal = new scrollReveal({ reset: true }); // })(); // }; var fanganSwiper = new Swiper('.fangan-body-bg', { slidesPerView: 1, loop: true, pagination: { el: '.fangan-swiper-pagination', //clickable :true, type: 'fraction', }, // pagination: '.fangan-swiper-pagination', // paginationType: 'fraction', initialSlide :0, navigation: { prevEl: '.fangan-body-prev', nextEl: '.fangan-body-next', }, // prevButton:'.fangan-body-prev', // nextButton:'.fangan-body-next', onTransitionEnd: function(swiper){ $(".tap-nav-li").removeClass("aon"); $(".tap-nav-li").eq(fanganSwiper.activeIndex).addClass("aon"); } }); $(".tap-nav-li").hover(function() { var e=$(this).index() $(this).siblings().removeClass("aon"); $(this).addClass("aon"); fanganSwiper.slideTo(e, 1000, false); }); $(".tap-nav-li").eq(0).click() // 解决方案 end // 图片宽高比固定 imgHeight(); // 浮动客服 start //首先将.go-top隐藏 // 右侧滑动返回顶部 start var time; var $kefuBox = $('.kefu-page-box'); var $kefuLi = $kefuBox.find('#kefu-list-li'); // $kefuBox.css({ // 'marginTop': -($kefuBox.height() / 2) // }); $kefuLi.find('li').on({ 'mouseenter': function () { var scope = this; time = setTimeout(function () { var divDom = $(scope).children('div'); var maxWidth = divDom.width(); $(scope).stop().animate({ left: 77 - maxWidth }, 'normal', function () { var pic = $(scope).find('.kefu-list-weixin-pic-box'); if (pic.length > 0) { pic.show(); } }); }, 100); }, 'mouseleave': function () { var pic = $(this).find('.kefu-list-weixin-pic-box'); if (pic.length > 0) { pic.hide(); } clearTimeout(time); $(this).stop().animate({ left: 0 }, 'normal', function () { }); } }); $(window).scroll(function () { var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; var eltop = $kefuLi.find('.kefu-list-ftop'); if (scrollTop > 0) { eltop.show(); } else { eltop.hide(); } }); $kefuLi.find('.kefu-list-ftop').click(function () { var scrollTop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop; if (scrollTop > 0) { $('html,body').animate({ scrollTop: 0 }, 'slow'); } }); // 右侧滑动返回顶部 end })