“gładka przewijana do kotwicy” Kod odpowiedzi

gładka przewijana do kotwicy

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

Gładkie przewijanie CSS

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 Scroll to Element Anchor

//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

gładka przewijana do kotwicy

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

gładki zwoju na znaczniku kotwicy

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

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

Odpowiedzi podobne do “gładka przewijana do kotwicy”

Pytania podobne do “gładka przewijana do kotwicy”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu