12345678910 |
- $(window).scroll(function (){
- var st = $(this).scrollTop();
- if(st >50){
- $('.y_lpindexnav').animate({top:"50px"},100,function(){});
- $('.y_lphome_nav').fadeOut();
- }else{
- $('.y_lpindexnav').animate({top:"-20px"},50,function(){});
- $('.y_lphome_nav').fadeIn();
- }
- });
|