javascript, jQuery

Smooth Scroll

<script type="text/javascript">
 jQuery(document).ready(function($) { 
 
 //EFFETTO MORBIDOSO
 
 $(function() {
 $('a[href*="#"]:not([href="#"])').click(function() {
 if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
 var target = $(this.hash);
 target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
 if (target.length) {
 $('html, body').animate({
 scrollTop: target.offset().top-100
 }, 1000);
 return false;
 }
}
 });
});
 
 });
</script>

Lascia un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *