// JavaScript Document //配合JQuery仿微博滚动效果js /** *obj为id的字符串,如"obj_div_id";sudu为滚动速度、延时,如 400(ms),margintop:距离上面的高度,如 38 */ function AutoScroll(obj){//医院公告、其他特色科室滚动效果 $("#"+obj).find("ul:first").animate({ marginTop:"-38px" },500,function(){ $(this).css({marginTop:"0px"}).find("li:first").appendTo(this); }); } function AutoScroll(obj,sudu,margintop){//重载 $("#"+obj).find("ul:first").animate({ marginTop:"-"+margintop+"px" },sudu,function(){ $(this).css({marginTop:"0px"}).find("li:first").appendTo(this); }); } /*function AutoScroll(obj,sudu,margintop){//重载:向左滚动 $("#"+obj).find("ul:first").animate({ marginLeft:"-960"+"px" },sudu,function(){ $(this).css({marginLeft:"0px"}).find("li:first").appendTo(this); }); }*/