$(function(){ jquery(".slidebox").slide({maincell:".bd ul",autoplay:true}); //banner $(function(){ var swiper = new swiper('#swiper-container_ban', { pagination: '.swiper-pagination', paginationclickable: true }); var swiper = new swiper('#swiper-container_news', { pagination: '.swiper-paginationa', paginationclickable: true }); }); }); //nav $(function(){ var $hei = $(".header").height(); var $heig = $("#nav").height(); // $("#nav").css({"top": $heig}); var mark=1; $(".menu").click(function(){ if(mark==1){ $(this).addclass("close"); $('#nav').animate({"right":"0px"}, 300); $(".container").animate({"right":"30%"},300); $("#showright").show(); mark=2; }else if(mark==2){ $("#nav").animate({"right": "-30%"},300); $(".container").animate({"right":"0px"},300); $("#showright").hide(); $(this).removeclass("close"); mark=1; } }); $("#showright").click(function(e) { $("#nav").animate({"right": "-30%" },300); $(".container").animate({"right":"0px"},300); $("#showright").hide(); mark=1; }); $("#nav").click(function(e) { e.stoppropagation(); }); });