zoukankan      html  css  js  c++  java
  • Jqury 块在window窗口居中

    1.块在父容器里居中常用方法—— 

                position: absolute;
                left: 50%;
                top: 50%;
                margin-left: -250px;
                margin-top: -200px;
                 500px;
                height: 400px;
    

      其中:

    margin-left: -250px; /* 元素本身文档宽度的一半*/
    margin-top: -200px /* 元素本身文档高度的一半*/

    /*  注意-有滚动条时:这种居中必须滚动条滑到中间,效果不好 */

    2 块在window窗口居中

    <body>
        <div class="con">
            <form class="show">
               用户名: <input type="text" name="name" id=""/>
            </form>
        </div>
    </body>
    
    <script src="jquery-3.0.0.js"></script>
    <script>
        $( function(){
    //初始化
            $("form").css("top",  $(window).height()/2+"px");
            $("form").css("left",  $(window).width()/2+ "px");
            $("form").css("margin-top",-200+ "px");
            $("form").css("margin-left",-250+"px")
    //滚动事件 窗口大小变化事件
            $(window).on("resize  scroll",  function () {
                $("form").css("top",  $(window).height()/2+"px");
                $("form").css("left",  $(window).width()/2+ "px");
                $("form").css("margin-top",-200+ document.body.scrollTop+"px");
                $("form").css("margin-left",-250+  document.body.scrollLeft+"px")
            })
        });
    
    
    </script>
    

      

           body{
                 2000px;
                height: 2800px;
            }
    
    
            .con form{
     /*   在指定父容器 里面居中*/
    /*           left: 50%;
                top: 50%;
                margin-left: -250px;
                margin-top: -200px;*/
                position: absolute;
                 500px;
                height: 400px;
                background: rgba(255,0,0,0.5);
             }
    

      

  • 相关阅读:
    多个DataTable的合并成一个新表
    into #临时表的用法
    触发器获取更新前的数据
    C# 多个CSV文件合并成一个文件
    group by 字段名 with ROLLUP
    删除DataTable重复列,只针对删除其中的一列重复的行(转)
    动态注册jS
    JS 验证
    导出Excel
    C# 导入多个工作薄文件
  • 原文地址:https://www.cnblogs.com/July-/p/5796658.html
Copyright © 2011-2022 走看看