顶部下拉广告

来源:互联网 发布:ins软件下载 编辑:程序博客网 时间:2024/05/03 22:26
<!doctype html><html><style type="text/css">*{    margin: 0;    padding:0;}.box{    width: 1000px;    height: 90px;    margin: 0 auto;    margin-top:-90px;}.banner{    width: 100%;    height: 150px;    background: red;    margin: 0 auto;}.content{    width: 960px;    height: 800px;    background: green;    margin: 0 auto;}</style><head><script type="text/javascript" src="js/jquery-1.11.1.min.js"></script><script type="text/javascript">    $(function(){        $(".box").animate({marginTop:0},2000,function(){            setTimeout(function(){                $(".box").animate({marginTop:-90},2000)            },1000)        })    })</script></head><body>    <div class="box">        <img src="img/1.jpg" alt="">    </div>    <div>        <div class="banner"></div>        <div class="content"></div>    </div></body></html>

0 0