码迷,mamicode.com
首页 > 其他好文 > 详细

前端相关

时间:2017-08-30 20:05:12      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:前端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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!