Skip to content

Instantly share code, notes, and snippets.

@koanvl
Last active June 18, 2018 14:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koanvl/fcadf7621fe13c8be1f9526d5415be1f to your computer and use it in GitHub Desktop.
Save koanvl/fcadf7621fe13c8be1f9526d5415be1f to your computer and use it in GitHub Desktop.
/*scroll navigation*/
$('.scroll').on('click', function(e) {
e.preventDefault();
var section = $(this).attr('href').substr($(this).attr('href').indexOf('#'));
var $section = $(section);
$('html, body').animate({
scrollTop: $section.offset().top-90
}, 1000);
});
//html
<div class="menu">
<ul>
<li><a href="#section-scroll-1" class="scroll">О конференции</a></li>
<li><a href="#section-scroll-2" class="scroll">Расписание</a></li>
<li><a href="#section-scroll-3" class="scroll">Спикеры</a></li>
<li><a href="#section-scroll-4" class="scroll">Цены</a></li>
<li><a href="#section-scroll-5" class="scroll">FAQ</a></li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment