$(document).ready(function () { //상단 공통 슬라이드 메뉴 $(".topnav").hover(function() { $(this).parent().find(".subnav").show(); $(this).parent().hover(function() { }, function(){ $(this).parent().find(".subnav").hide(); }); }); // 상단으로 스크롤 var speed = 500; // 스크롤속도 $(".gotop").css("cursor", "pointer").click(function() { $('body, html').animate({scrollTop:0}, speed); }); //메인 비쥬얼 슬라이드 //Can also be used with $(document).ready() $(window).load(function() { $('.flexslider').flexslider({ animation: "fade",//slide slideshowSpeed: 5000, directionNav: true, controlNav: true, slideToStart: 0, pauseOnHover: true, animationSpeed: Modernizr.touch ? 1000 : 2000 }); }); $(function(){ var startSlide = 1; $('#slides').slides({ container: 'slide', pagination: true, generatePagination: true, paginationClass: 'page', start: 1, effect: 'slide', slideSpeed: 1000, play: 4000, pause: 0, start: startSlide }); $('#slides2').slides({ container: 'slide', pagination: false, generatePagination: false, paginationClass: 'page', start: 1, effect: 'fade', slideSpeed: 400, play: 4000, pause: 0, start: startSlide }); }); });