“плавная свиток на якоре” Ответ

плавная свиток на якоре

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

Гладкий прокруток 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 гладкий свиток к якорям элементу

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

плавная свиток на якоре

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

плавная прокрутка на якоре

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

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

Ответы похожие на “плавная свиток на якоре”

Вопросы похожие на “плавная свиток на якоре”

Больше похожих ответов на “плавная свиток на якоре” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования