“Прокрутите гладкий CSS” Ответ

Гладкий прокруток CSS

html {
  scroll-behavior: smooth;
}

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

плавный свиток

html {
    scroll-behavior: smooth !important;
}
Graceful Gazelle

Прокрутите гладкий CSS

html {
  scroll-behavior: smooth;
}
Successful Snake

плавный свиток

// Scroll to specific values
// window.scrollTo or
window.scroll({
  top: 1000, 
  left: 0, 
  behavior: 'smooth'
});

// Scroll certain amounts from current position 
window.scrollBy({ 
  top: 250, // could be negative value
  left: 0, 
  behavior: 'smooth' 
});

// Scroll to a certain element
document.getElementById('el').scrollIntoView({
  behavior: 'smooth'
})
Graceful Gazelle

Ответы похожие на “Прокрутите гладкий CSS”

Вопросы похожие на “Прокрутите гладкий CSS”

Больше похожих ответов на “Прокрутите гладкий CSS” по HTML

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

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