MyBB Tutorials

Appearing Scroll to Top

Submitted by Blowjob, , Thread ID: 628

Thread Closed
Blowjob
Closed Account
Level:
0
Reputation:
26
Posts:
2.16K
Likes:
189
Credits:
2.53K
23-01-2015, 07:02 AM
#1
There are huge and lengthy jQuery scroll to top scripts are available throughout the web. But today we will learn to make an appearing scroll to top button with minimal jQ and CSS.

Initially, the scroll to top button will be hidden but as soon as the user will scroll down, the button will appear.

Open your footer template and add the following code at the very beginning:


Code:
<script type="text/javascript">
jQuery(function($) {
$("#backtop").hide();
$(window).scroll(function () {
  if ($(this).scrollTop() > 400) {
   $('#backtop').fadeIn(200);
  } else {
   $('#backtop').fadeOut(200);
  }
});
$('.go-top').click(function () {
  $('html,body').animate({
   scrollTop: 0
  }, 1000);
  return false;
});
});
</script>

and at the end before two close </div> tags:


Code:
<div id='backtop'>
  <a class='go-top' href='#top' title='Back to Top'><img src="BUTTON IMAGE" /></a>
</div>
Remember to change the Button Image to your needs. You may use this one as a quick paste:
[Image: OETNh.png]

Save your footer template. Open global.css and add at the end:


Code:
#backtop {
position: fixed;
bottom: 50px;
right: 10px;
margin: 0;
padding: 0;
width: 36px;
height: 36px;
z-index: 100;
}

Remember to include jQ library in MyBB if it is already not. In headerinclude:


Code:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript">
jQuery.noConflict();
</script>

Enjoy scrolling back to top ... :D

Users browsing this thread: 1 Guest(s)