Smooth Anchor Scroll
Let's create some fun vertical scroll buttons to control our anchor scroll and smooth it out.
Tutorial No.1
Let's create some fun vertical scroll buttons to control our anchor scroll and smooth it out.
Use Buttons to Scroll
‒ Time for Font-Awesome!
'fa-circle'
for simplicity‒ Style fonts and think about what we want to achieve
‒ Important: Get the scrollbar position of an element when the corresponding dot is clicked
'.click()'
to control what happens (hint: $().animate()
) when dots are clicked$(this).attr('href')
gets the href value of the dot being clicked, e.g '#block3'
when dot #3 is clicked'.offset().top'
gets the current top position of an element$('#x').offset().top
will tell the scrollbar to go to x's top position'.animate()'
animates the scrollbar position change within element 'body' over 0.3 seconds