标签:前端js等
固定DIV的css,overflow:hidden。
往上滚动显示
function autoScroll(obj){
$(obj).find(".bulletin_center").animate({
marginTop : "-80px"
},800,function(){
$(this).css({marginTop : "0px"}).find("h3:first").appendTo(this);
$(this).css({marginTop : "0px"}).find("p:first").appendTo(this);
})
}
时间间隔3秒
$(function(){
setInterval(‘autoScroll(".bulletin_board")‘,3000);
})
标签:前端js等
原文地址:http://19951995.blog.51cto.com/12620826/1961138