/* */ /* Drop Down Menu */ $(document).ready(function() { $("#gnb li").mouseenter(function() { $("#gnb").stop().animate({ height: 200 }); }); $("#gnb li").mouseleave(function() { $("#gnb").stop().animate({ height: 42 }); }); }) /* pw.bxslider */ $(document).ready(function() { // $('.home .bxslider').bxSlider({ $('.bxslider').bxSlider({ mode: 'fade', //사라지는 모양 auto: true, //자동시작 autoControls: false, //stop, play controls: true, //좌,우 콘트롤 captions: false, //캡션 pager: true //하단중앙 동글점 //젤끝 마지막 , 안함!) }); })