// 메뉴바 그림자 $('#mainNavbar').affix({ offset: { top: 60 } }) jQuery(function ($) { 'use strict'; $(window).scroll(function () { if ($(window).scrollTop() == 0) { $('.v-topbar-w').stop(true, false).slideDown(); } else { $('.v-topbar-w').slideUp("fast"); } }); // 스크롤 (function () { $('li a[href*=#]').bind("click", function(e){ var anchor = $(this); $('html, body').stop().animate({ scrollTop: $(anchor.attr('href')).offset().top -136 }, 1000); e.preventDefault(); }); }()); // 탑가기 (function () { $(window).scroll(function() { if ($(this).scrollTop() > 100) { $('.scroll-up').fadeIn(); } else { $('.scroll-up').fadeOut(); } }); }()); // 패럴랙스 (function () { $(window).bind('load', function () { parallaxInit(); }); }()); }); // 토글 $(document).ready(function () { $(".navbar-toggle").on("click", function () { $(this).toggleClass("active"); }); }) // 스크롤 리비얼 window.sr = ScrollReveal(); sr.reveal('.p-1', { duration: 1200, scale: 1, opacity: 0, origin: 'bottom', distance: '43px' });