Scroll bar event

Source: Internet
Author: User

I have been wondering how to monitor the events of the scroll bar. Now I understand it.

The following code is the supervisorMove as long as you listen to the scroll bar, The lower returns the DIV display and hidden code at the top.

window.onscroll = function () {           var t = document.documentElement.scrollTop || document.body.scrollTop;           if (t > 0) {               $(".cbbfixed").css("bottom", "10px");           } else {               $(".cbbfixed").css("bottom", "-85px");           }       }

Note: T: the distance from the scroll bar to the top

T> 0, that is, once the scroll bar is rolled, the IF () Statement is executed immediately. The code in else () is that when the scroll bar reaches the top, the DIV at the top is returned to hide

Return to the top button click operation

       $("#cgotop").click(function(){           $('body,html').animate({ scrollTop: 0 }, 100);           return false;       });


Supplement:

1. Listen to the scroll bar event of an element

$ (Selector). Scroll (function (){.......});

2. Get the scroll distance of the scroll bar

$ (Selector). scrolltop (); $ (selector). scrolllefft ();

 

Scroll bar event

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.