Script for fixed header menu on top of the screen

Hello All,

Please use this  script for fix header on top.

<!--Css Zilla Script for header fixed--->
<script type="text/javascript">

    $(window).scroll(function () {

      if ( $(this).scrollTop() > 186 && !$('.header_fixed').hasClass('open') ) {

        $('.header_fixed').addClass('open');

        $('.header_fixed').slideDown();

       } else if ( $(this).scrollTop() <= 186 ) {

        $('.header_fixed').removeClass('open');

        $('.header_fixed').slideUp();

      }

    });

   

    </script>



Live Example on http://paulbennetts.co/ 






Comments

Popular posts from this blog

50 Beautiful Color Palettes for Your Next Web Project

Website Color Palettes: The Palettes of 50 Visually Impactful Websites to Inspire You Css Zilla