jquery(document).ready(function($){ // browser window scroll (in pixels) after which the "back to top" link is shown var offset = 300, //browser window scroll (in pixels) after which the "back to top" link opacity is reduced offset_opacity = 1200, //duration of the top scrolling animation (in ms) scroll_top_duration = 700, //grab the "back to top" link $back_to_top = $('.cd-top'); //hide or show the "back to top" link $(window).scroll(function(){ ( $(this).scrolltop() > offset ) ? $back_to_top.addclass('cd-is-visible') : $back_to_top.removeclass('cd-is-visible cd-fade-out'); if( $(this).scrolltop() > offset_opacity ) { $back_to_top.addclass('cd-fade-out'); } }); //www.sucaijiayuan.com //smooth scroll to top $back_to_top.on('click', function(event){ event.preventdefault(); $('body,html').animate({ scrolltop: 0 , }, scroll_top_duration ); }); });