“Faites un défilement lisse pour ancrer” Réponses codées

Faites un défilement lisse pour ancrer

/* Just use Native HTML Smooth Scroll */
html {
  scroll-behavior: smooth;
}
gtamborero

CSS à défilement lisse

html {
  scroll-behavior: smooth;
}

/* No support in IE, or Safari
You can use this JS polyfill for those */
http://iamdustan.com/smoothscroll/
deadlymuffin

JavaScript Smooth défile vers l'ancre

//add smooth scrolling when clicking any anchor link
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
    anchor.addEventListener('click', function (e) {
        e.preventDefault();
        document.querySelector(this.getAttribute('href')).scrollIntoView({
            behavior: 'smooth'
        });
    });
});
//<a href="#someOtherElementID"> Go to Other Element Smoothly </a>
Grepper

Faites un défilement lisse pour ancrer

jQuery(document).ready(function($) {
					var $page = $('html, body');
					$('a[href*="#"]').click(function() {
						$page.animate({
							scrollTop: $($.attr(this, 'href')).offset().top-50
						}, 600);
						return false;
					});
					});
Dead Duck

Smooth Dired sur la balise d'ancrage

document.querySelectorAll('a[href^="#"]').forEach(anchor => {
    anchor.addEventListener('click', function (e) {
        e.preventDefault();

        document.querySelector(this.getAttribute('href')).scrollIntoView({
            behavior: 'smooth'
        });
    });
});
Angry Armadillo

Réponses similaires à “Faites un défilement lisse pour ancrer”

Questions similaires à “Faites un défilement lisse pour ancrer”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code