Plugin Directory

Changeset 534395


Ignore:
Timestamp:
04/21/2012 09:00:43 AM (14 years ago)
Author:
paulund
Message:

Add animation to scroll to top.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pinterest-scroll-to-top-plugin/trunk/js/script.js

    r533692 r534395  
    88        $(window).scroll(function(){
    99            if ($(this).scrollTop() > 200) {
    10                 $('.scrollToTop').css('bottom', '-10px');
     10                $('.scrollToTop').animate({'bottom':'-10px'}, 350);
    1111            } else {
    12                 $('.scrollToTop').css('bottom', '-100px');
     12                $('.scrollToTop').animate({'bottom':'-100px'}, 350);
    1313            }
    1414        });
Note: See TracChangeset for help on using the changeset viewer.