• 页面置顶特效


    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
        <title>置顶</title>
        <style type="text/css">
            body
            {
                height: 3000px;
            }
            #divUpDown
            {
                position: fixed;
                top: 300px;
                right: 2px;
            }
            #divUpDown span
            {
                cursor: pointer;
                 48px;
                height: 48px;
    
                display: block;
            }
            #divUpDown .top
            {
                background: url(images/updown.png) left top no-repeat;
            }
            #divUpDown .top:hover
            {
                background: url(images/updown.png) right top no-repeat;
            }
            #divUpDown .bottom
            {
                background: url(images/updown.png) left bottom no-repeat;
            }
            #divUpDown .bottom:hover
            {
                background: url(images/updown.png) right bottom no-repeat;
            }
        </style>
        <script src="/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>
        <script type="text/javascript">
            $(function () {
                //滚动时 控制置顶div的显示与隐藏
                $(window).scroll(function () {
                    if ($(window).scrollTop()>400) {
                        $("#divUpDown").fadeIn(200);
                    }
                    else {
                        $("#divUpDown").fadeOut(200);
                    }
                });
                $("#divUpDown .top").click(function () { $("html,body").animate({ scrollTop: "0px" }, 500); });
                $("#divUpDown .bottom").click(function () { $("html,body").animate({ scrollTop: $(document).height() + "px" }, 500); });
            });
        </script>
    </head>
    <body>
       <div id="divUpDown">
       <span class="top"></span>
       <span class="bottom"></span>
       </div>
    </body>
    </html>
    

      

     

    用到的图片

  • 相关阅读:
    第21,22章:出现次数超过一半的数字,最短摘要的生成
    String的方法
    最长公共子串
    第29章:字符串编辑距离
    字符串转换为整数
    第11章:最长公共子序列(LCS:Longest Common Subsequence)
    django开发_七牛云CNAME解析
    django开发_七牛云图片管理
    FastDFS分布式文件系统
    requests获取响应时间(elapsed)与超时(timeout)、小数四舍五入
  • 原文地址:https://www.cnblogs.com/xiexingen/p/2987078.html
Copyright © 2020-2023  润新知