网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的范文:

 

标题 jquery实现对联广告的方法
范文
    本文实例讲述了jquery实现对联广告的方法。分享给大家供大家参考。具体实现方法如下:
    复制代码 代码如下:<!DOCTYPE>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script src="js/jquery.js" type="text/javascript"></script>
    <script type="text/javascript">
    $(document).ready(function(){
    var duilian = $("div.duilian");
    var duilian_close = $("a.duilian_close");
    var window_w = $(window).width();
    if(window_w>1000){duilian.show();}
    $(window).scroll(function(){
    var scrollTop = $(window).scrollTop();
    duilian.stop().animate({top:scrollTop+100});
    });
    duilian_close.click(function(){
    $(this).parent().hide();
    return false;
    });
    });
    </script>
    <style>
    /*下面是对联广告的css代码*/
    .duilian{top:100px;position:absolute; width:102px; overflow:hidden; display:none;}
    .duilian_left{ left:6px;}
    .duilian_right{right:6px;}
    .duilian_con{border:red solid 1px; width:100px; height:300px; overflow:hidden;}
    .duilian_close{ width:100%; height:24px; line-height:24px; text-align:center; display:block; font-size:13px; color:#555555; text-decoration:none;}
    </style>
    </head>
    <body>
    <!--下面是对联广告的html代码结构-->
    <div>
    <div>对联的内容</div>
    <a href="#">X关闭</a>
    </div>
    <div>
    <div>对联的内容</div>
    <a href="#">X关闭</a>
    </div>
    <p></p>
    </body>
    </html>
    希望本文所述对大家的jQuery程序设计有所帮助。
随便看

 

在线学习网范文大全提供好词好句、学习总结、工作总结、演讲稿等写作素材及范文模板,是学习及工作的有利工具。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/24 12:00:49