(function ($) { "use strict"; var main_wind = $(window); var wWidth = $(window).width(); jQuery(document).ready(function ($) { //----get current year---- var new_date = new Date(); var new_year = new_date.getFullYear(); $(".current-year").append(new_year); //---dropdown menu depth control ------ $("ul.dropdown-menu").each(function(){ var dropdownMenuOffset = (wWidth - ($(this).offset().left + $(this).outerWidth())); if( dropdownMenuOffset < 5 ){ $(this).addClass('dropdown-left'); }else{ $(this).removeClass('dropdown-left'); } }); //-----show hide dropdown menu when responsive---- $('.menu-item-has-children i.mobile').on('click', function(){ $(this).siblings('ul.dropdown-menu').slideToggle(); $(this).parent('li').siblings().find('ul.dropdown-menu').slideUp(); }) //----------moving to welcome section on clicking mouse icon--------- $("#mouse").on("click", function () { $("html, body").animate({ scrollTop: $("#welcome").offset().top - 0 + 'px' }, 1200); }); }); //--end document ready function-- //------sticky menu---- main_wind.on('scroll', function () { if ($(this).scrollTop() >= 35) { $(".sticky-menu").addClass("sticked"); } else { $(".sticky-menu").removeClass("sticked"); } }); //--------Scroll Top--------- main_wind.on('scroll', function () { if ($(this).scrollTop() > 200) { $('.scroll-top').fadeIn(); $('.scroll-top').removeClass('not-visible'); } else { $('.scroll-top').fadeOut(); } }); $('.scroll-top').on('click', function (event) { event.preventDefault(); $('html, body').animate({ scrollTop: 0 }, 500); }); }(jQuery));