PHP
- 5 ответов
- 0 вопросов
4
Вклад в тег
$('.scroll').on('click', function() {
$('.block-top').animate({height: '1000px'},500, 'swing', () => {
$('html,body').animate({ scrollTop: $('.anchor').offset().top }, 500);
});
})