JavaScript implementation back to top special effects _javascript Tips

Source: Internet
Author: User

Html:

<input id= "btn1" type= "button" value= "Back to Top"/>

Css:

#btn1 {position:fixed;bottom:10px;right:10px;}

Js:

Window.onload=funcition () {
  var Obtn=document.getelementbyid ("btn");
  var timer=null;
  Declare a variable to see whether it is a system or a user scrolling
  var sbys=true;
  Window.onscroll=funcition () {
    if (!sbys) {
      clearinterval (timer);
    }
    Sbys=false;
  }
  Obtn.onclick=funcition () {
    timer = setinterval (Funcition () {
      //Get scrolltop
      var scrolltop= document.documentelement.scrolltop| | Document.body.scrollTop;
      When the Click button returns to the top, compute the buffer speed of
      var ispeed=math.floor (-SCROLLTOP/8);
      if (scrolltop==0) {
        clearinterval (timer)
      }
      sbys=true;
      Document.documentelement.scrolltop=document.body.scrolltop=scrolltop+ispeed
    },30)
  }}

Knowledge Points:

1. Calculate the speed (buffer) to take down the whole
2. Need to clear timer when scrolltop==0
3. Need to determine whether the user or JS operation of the scroll bar, if it is user action to clear the timer

The above mentioned is the entire content of this article, I hope you can enjoy.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.