$(function(){ $(window).scroll(function() { var top = $(window).scrollTop() / 2; var top2 = $(window).scrollTop() / 1.5; $(".bannerBox").css('top', -top); $(".bannerBox .txt").css('top', -top2); }); $(".itemBox .item .innerBox").hover(function(){ $(this).find(".caseInfo").stop().animate({opacity:1},300); $(this).addClass("hover"); $(this).find(".btn").addClass("btnDh"); $(this).find(".txts").addClass("txtsDh"); $(this).find(".step").addClass("stepDh"); $(this).find(".picBtn").addClass("picBtnDh"); },function(){ $(this).find(".caseInfo").stop().animate({opacity:0},300); $(".itemBox .item .innerBox .btn").removeClass("btnDh"); $(".itemBox .item .innerBox .txts").removeClass("txtsDh"); $(".itemBox .item .innerBox .step").removeClass("stepDh"); $(".itemBox .item .innerBox .picBtn").removeClass("picBtnDh"); }); //var swiper = new Swiper(".kvSwiper", { // //autoplay: true, // //autoplay: { //// delay: 8000, //// }, // slidesPerView: 1, // spaceBetween: 0, // loop: true, // pagination: { // el: ".kv-pagination", // clickable: true, // }, // //navigation: { //// nextEl: ".swiper-button-next", //// prevEl: ".swiper-button-prev", //// }, // }); $('.proDialog .close').click(function(){ $('.proDialog').fadeOut(300); }); });