$(document).ready(function($){ // 로더 $('.preloader').fadeOut(1000); // 상단 메뉴 컬러 $(window).scroll(function(){ if ( $(this).scrollTop() > 2 ) { $('#nav').addClass('scroll'); } else { $('#nav').removeClass('scroll'); } }); // 상하 빠른 스크롤 $(window).scroll(function(){ if ( $(this).scrollTop() > 100 ) { $('#scrollToper').fadeIn(); } else { $('#scrollToper').fadeOut(); } }); $('#toTop').click(function(){ $('html, body').animate({scrollTop : 0},500); }); $('#toBottom').click(function(){ $('html, body').animate({scrollTop : $(document).height() },500); }); // 블럭 페이드인 AOS.init(); // 즐겨찾기 $('.favorite').on('click', function(e) { var bookmarkURL = 'http://design.neo-media.kr'; var bookmarkTitle = document.title; var triggerDefault = false; if (window.sidebar && window.sidebar.addPanel) { window.sidebar.addPanel(bookmarkTitle, bookmarkURL, ''); } else if ((window.sidebar && (navigator.userAgent.toLowerCase().indexOf('firefox') > -1)) || (window.opera && window.print)) { var $this = $(this); $this.attr('href', bookmarkURL); $this.attr('title', bookmarkTitle); $this.attr('rel', 'sidebar'); $this.off(e); triggerDefault = true; } else if (window.external && ('AddFavorite' in window.external)) { window.external.AddFavorite(bookmarkURL, bookmarkTitle); } else { alert((navigator.userAgent.toLowerCase().indexOf('mac') != -1 ? 'Cmd' : 'Ctrl') + '+D 키를 눌러 즐겨찾기에 등록하실 수 있습니다.'); } return triggerDefault; }); //갤러리 $('.gallery-filter .btn').click(function(){ $(this).siblings().removeClass('active'); $(this).addClass('active'); var galleryClass = $(this).attr('data-rel'); $('.gallery').fadeTo(100, 0.1); $('.gallery .item').not('.'+galleryClass).fadeOut(); setTimeout(function() { $('.'+galleryClass).fadeIn(); $('.gallery').fadeTo(300, 1); }, 300); }); $('.gallery .item').click(function(){ $('.gallery-modal .image .img img').attr('src', $(this).find('img').attr('src')); $('.gallery-modal .image .text').html($(this).find('img').attr('title')); }); });