-1

我为一个网站设计了一个简单的 jquery 横幅。横幅工作正常,但如何以设置的间隔自动刷新横幅。我已经浏览了各种代码,但它不起作用。请通过在特定时间间隔内更正横幅的代码重复来帮助我。

CSS代码:

 .banner {-webkit-border-radius:6px;    -moz-border-radius:8px;    
              border-radius:8px; -khtml-border-radius: 8px; 
              border:#bbd9ef solid 1px; background:#f5fffa; 
              padding: 5px 0 0 20px; width: 200px; height: 110px; 
             }
  .k, .l, .m, .n {position: relative; top: -200px; text-decoration: none; }
  .n { font-weight: bold; color: red; }

jquery1.9.1 的脚本代码:

$(document).ready(function() {
    $(".banner a").hide();
    (function() {
        $(".k").show().animate({
            top: "0"
        }, 3000, function() {
            $(".l").show().animate({
                top: "0"
            }, 3000, function() {
                $(".m").show().animate({
                    top: "0"
                }, 3000, function() {
                    $(".n").show().animate({
                        top: "0"
                    }, 3000);
                });
            });
        });
    })();
});

HTML代码:

<div class="banner">
    <a href="#" class="k">Design banner in your ownway</a><br />
    <a href="#" class="l"> Get more taffic and publishers.</a><br/>
    <a href="#" class="m">Still doubt, please do contact:</a><br/><br/>
    <a href="#" class="n">www.freemenu.info</a>
</div>
4

1 回答 1

0

显示元素后n设置一个计时器以重新启动动画

$(document).ready(function () {
    $(".banner a").hide();
    function banner(){
        $(".k").show().animate({
            top: "0"
        }, 3000, function () {
            $(".l").show().animate({
                top: "0"
            }, 3000, function () {
                $(".m").show().animate({
                    top: "0"
                }, 3000, function () {
                    $(".n").show().animate({
                        top: "0"
                    }, 3000, function(){
                        setTimeout(function(){
                            $(".banner a").hide().css('top', '');
                            banner();
                        }, 5000);
                    });
                });
            });
        });
    }
    banner();
});

演示:小提琴

于 2013-09-22T12:24:17.207 回答