20150620文本自动滚动效果

html======
<div class="demo1">
    <h3>文本框中的文字自动滚动</h3>
    <div id="roll" data-rwidth="100" data-rheight="100" class="roll">
        <ul id="ul" class="list" style="">
            <li>滟滟随波千万里,何处春江无月明!</li>
            <li>江流宛转绕芳甸,月照花林皆似霰。</li>
            <li>空里流霜不觉飞,汀上白沙看不见。</li>
            <li>江天一色无纤尘,皎皎空中孤月轮。</li>
            <li>江畔何人初见月?江月何年初照人?</li>
            <li>人生代代无穷已,江月年年望相似。</li>
            <li>不知江月待何人,但见长江送流水。</li>
            <li>白云一片去悠悠,青枫浦上不胜愁。</li>
            <li>谁家今夜扁舟子?何处相思明月楼?</li>
        </ul>
    </div>
</div>

css=============

*{margin: 0;padding: 0;}
.roll{height: 165px;overflow: hidden;}
ul li{line-height: 20px;}


js==============

function move(obj,attr,tar,fn) {
    obj.timer && clearInterval(obj.timer);
    obj.timer=setInterval(function () {
        var cur=parseInt(css(obj,attr));
        var speed=(tar-cur)/8;
        speed=(speed>0)?Math.ceil(speed):Math.floor(speed);
        if(cur!=tar){
            obj.style[attr]=cur+speed+"px";
        }else{
            clearInterval(obj.timer);
            obj.timer=null;
            fn && fn();
        }
    },50)

}
function css(obj,attr) {
    if(window.getComputedStyle){
        return window.getComputedStyle(obj,false)[attr]
    }else{
        return obj.currentStyle[attr];
    }
}

var roll=document.getElementById('roll');
var ul=document.getElementById('ul');
function auto() {
    move(ul,'marginTop',-20,function () {
        ul.appendChild(ul.children[0]);
        ul.style.marginTop=0;
        setTimeout(auto, 50);
    })
}
auto();

 

转载于:https://www.cnblogs.com/wz0107/p/4590179.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值