前端相關

固定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);

})


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章