Wuza
wuza
Home
About Us
Who we are?
What we do?
How it works?
Our Works
Services
Portfolio
Pricing
Contact
Contact
Home
Contact
123movies
responsive google map embed
Location:
A108 Adam Street, New York, NY 535022
Email:
info@example.com
Call:
+1 5589 55488 55s
Loading
Your message has been sent. Thank you!
Send Message
//according to loftblog tut $('.nav li:first').addClass('active'); var showSection = function showSection(section, isAnimate) { var direction = section.replace(/#/, ''), reqSection = $('.section').filter('[data-section="' + direction + '"]'), reqSectionPos = reqSection.offset().top - 0; if (isAnimate) { $('body, html').animate({ scrollTop: reqSectionPos }, 800); } else { $('body, html').scrollTop(reqSectionPos); } }; var checkSection = function checkSection() { $('.section').each(function () { var $this = $(this), topEdge = $this.offset().top - 80, bottomEdge = topEdge + $this.height(), wScroll = $(window).scrollTop(); if (topEdge < wScroll && bottomEdge > wScroll) { var currentId = $this.data('section'), reqLink = $('a').filter('[href*=\\#' + currentId + ']'); reqLink.closest('li').addClass('active'). siblings().removeClass('active'); } }); }; $('.main-menu, .scroll-to-section').on('click', 'a', function (e) { if($(e.target).hasClass('external')) { return; } e.preventDefault(); $('#menu').removeClass('active'); showSection($(this).attr('href'), true); }); $(window).scroll(function () { checkSection(); });