//#to-top button appears after scrolling var fixed = false; $(document).scroll(function() { if ($(this).scrollTop() > 250) { if (!fixed) { fixed = true; // $('#to-top').css({position:'fixed', display:'block'}); $('#to-top').show("slow", function() { $('#to-top').css({ position: 'fixed', display: 'block' }); }); } } else { if (fixed) { fixed = false; $('#to-top').hide("slow", function() { $('#to-top').css({ display: 'none' }); }); } } }); /*hover_img*/ $(document).ready(function(){ $('#bnimg1').hover( function(){$(this).attr('src','img/s_imgs/bnimg05r.gif')}, function(){$(this).attr('src','img/s_imgs/bnimg05.gif')} ) $('#bnimg2').hover( function(){$(this).attr('src','img/s_imgs/bnimg06r.gif')}, function(){$(this).attr('src','img/s_imgs/bnimg06.gif')} ) $('#bnimg3').hover( function(){$(this).attr('src','img/s_imgs/bnimg07r.gif')}, function(){$(this).attr('src','img/s_imgs/bnimg07.gif')} ) $('#bnimg4').hover( function(){$(this).attr('src','../img/s_imgs/mainimg4r.jpg')}, function(){$(this).attr('src','../img/s_imgs/mainimg4.jpg')} ) $('#bnimg5').hover( function(){$(this).attr('src','img/s_imgs/mainimg5r.jpg')}, function(){$(this).attr('src','img/s_imgs/mainimg5.jpg')} ) $('#bnimg6').hover( function(){$(this).attr('src','img/s_imgs/mainimg6r.jpg')}, function(){$(this).attr('src','img/s_imgs/mainimg6.jpg')} ) $('#simg1').hover( function(){$(this).attr('src','img/s_imgs/sns01.png')}, function(){$(this).attr('src','img/s_imgs/sns01r.png')} ) $('#simg2').hover( function(){$(this).attr('src','img/s_imgs/sns02.png')}, function(){$(this).attr('src','img/s_imgs/sns02r.png')} ) $('#simg3').hover( function(){$(this).attr('src','img/s_imgs/sns03.png')}, function(){$(this).attr('src','img/s_imgs/sns03r.png')} ) $('#simg4').hover( function(){$(this).attr('src','img/s_imgs/sns04.png')}, function(){$(this).attr('src','img/s_imgs/sns04r.png')} ) }); /*ij·¯¼¿2*/ $('.carousel2').carousel({interval: 3000 }) /***************** Waypoints ******************/ $('.wp1').waypoint(function() { $('.wp1').addClass('animated bounceInLeft'); }, { offset: '100%' }); $('.wp2').waypoint(function() { $('.wp2').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp3').waypoint(function() { $('.wp3').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp4').waypoint(function() { $('.wp4').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp5').waypoint(function() { $('.wp5').addClass('animated fadeInUp'); }, { offset: '100%' }); $('.wp6').waypoint(function() { $('.wp6').addClass('animated fadeInUp'); }, { offset: '100%' }); //* /*¸Þ´ºº¯È­*/ $('.fix').waypoint(function(direction) { // ½ºÅ©·ÑÀÌ .fix¸¦ °¡¸®Å°´Â °æ¿ì if (direction === 'down') { // ½ºÅ©·Ñ ¹æÇâÀÌ down À̸é $('.topfix').removeClass('hidden'); // .topfix ¸Þ´º(ÇÏ´Ü) ºÎºÐ¿¡ ÀÖ´Â hidden ¼Ó¼ºÀ» Á¦°Å $('.menu').addClass('hidden'); // »ó´Ü ¸Þ´º¿¡´Â hidden ¼Ó¼ºÀ» ºÎ¿© ÇÑ´Ù. } }, { offset: '10' }).waypoint(function(direction) { if (direction === 'up') { // ½ºÅ©·Ñ ¹æÇâÀÌ up À̸é $('.topfix').addClass('hidden'); // // ¹Ý´ë·Î Àû¿ëµÇ°Ô ó¸®ÇÔ $('.menu').removeClass('hidden'); } }); // ¿À¸¥½½¶óÀÌ´õCloses the sidebar menu $("#menu-close").click(function(e) { e.preventDefault(); $("#sidebar-wrapper").toggleClass("active"); }); // ¿À¸¥½½¶óÀÌ´õOpens the sidebar menu $("#menu-toggle").click(function(e) { e.preventDefault(); $("#sidebar-wrapper").toggleClass("active"); });