1
I have a site with sections. I’m trying to get the scroll to skip to the next section and so on.. I thank you from now on!
1
I have a site with sections. I’m trying to get the scroll to skip to the next section and so on.. I thank you from now on!
1
There are many plugins that do this for you, recommend using the fullPage.js.
To use, just use the following code:
<div id="fullpage">
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
<div class="section">Some section</div>
</div>
In your javascript just use:
$(document).ready(function() {
$('#fullpage').fullpage();
});
Obrigadoo feraaa
Browser other questions tagged jquery html web-application
You are not signed in. Login or sign up in order to post.
Are you trying to figure out how? Paste the code so we can see
– Ricardo Moraleida
I don’t really know how to do this ... I want to make it look like this site:
– Leonardo Teixeira
http://na.leagueoflegends.com/en/featured/skins/star-guardian-2016
– Leonardo Teixeira
has several ways to implement this. Try this here: https://github.com/flesler/jquery.scrollTo
– Ricardo Moraleida
Thanks @Ricardomoraleida :D
– Leonardo Teixeira