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

自下而上滚动公告栏(可悬停)

时间:2018-07-14 13:12:28      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:body   时间   top   add   div   over   osi   var   col   

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>文字公告滚动轮播-jq22.com</title>
<script src="http://libs.baidu.com/jquery/1.9.1/jquery.min.js"></script>
<style>
* {
    margin:0;
    padding:0;
}
li {
    list-style:none;
}
.news {
    height:35px;
    background:#fff;
    overflow:hidden;
}
.news .t_news {
    height:20px;
    color:#2a2a2a;
    margin-top:15px;
    overflow:hidden;
    position:relative;
    width:500px;
}
.news .news_li,.swap {
    line-height:20px;
    display:inline-block;
    position:absolute;
    top:0;
    right:0;
    font-size:14px;
    text-align:right;
    color:#585858
}
.news .swap {
    top:20px;
}
</style>
</head>
<body>
<div class="news">
    <div class="t_news">
        <ul class="news_li">
            <li>1 我爱北京天安门</li>
            <li>2 我爱北京天安门</li>
            <li>3 我爱北京天安门</li>
            <li>4 我爱北京天安门</li>
            <li>5 我爱北京天安门</li>
        </ul>
        <ul class="swap"></ul>
    </div>
</div>

<script>
$(.swap).html($(.news_li).html());
x = $(.news_li);
y = $(.swap);
h = $(.news_li li).length * 20; //20为每个li的高度
var hh = $(.news_li li).length;
if (hh > 1)
    //setTimeout(b,3000);//滚动间隔时间 现在是3秒
    b();
b();

function b() {
    t = parseInt(x.css(top));
    //alert(t)
    y.css(top, 20px);
    x.animate({
        top: t - 20 + px
    }, slow); //20为每个li的高度
    if (Math.abs(t) == h - 20) { //20为每个li的高度
        y.animate({
            top: 0px
        }, slow);
        z = x;
        x = y;
        y = z;
    }
    setTimeout(b, 3000); //滚动间隔时间 现在是3秒
}
</script>

</body>
</html>

 

自下而上滚动公告栏(可悬停)

标签:body   时间   top   add   div   over   osi   var   col   

原文地址:https://www.cnblogs.com/shark1100913/p/9308973.html

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