div永远居中,css和js代码_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:26:39
원래의
1146명이 탐색했습니다.

//css方式<br /><!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>CSS Position 定位实现 DIV 在窗口居中</title>    <style type="text/css">        .dialog {            position: fixed;            _position: absolute;            z-index: 1;            top: 50%;            left: 50%;            margin: -141px 0 0 -201px;            width: 400px;            height: 280px;            border: 1px solid #CCC;            line-height: 280px;            text-align: center;            font-size: 14px;            background-color: #F4F4F4;            overflow: hidden;        }    </style></head><body style="height:5000px;">    <div class="dialog">我是css居中</div></body></html>
로그인 후 복사

//js方式<!DOCTYPE html><html><head>    <meta charset="utf-8">    <title>jq DIV 在窗口居中</title>    <script src="Scripts/jquery-1.8.2.js"></script>    <style type="text/css">        .dialog {            position: absolute;            z-index: 1;            width: 400px;            border: 1px solid #CCC;            line-height: 280px;            text-align: center;            font-size: 14px;            background-color: #F4F4F4;            overflow: hidden;        }    </style></head><body style="height:5000px;">    <div class="dialog">我是js居中</div></body></html><script>    $(function () {        Loading($('.dialog'));        $(window).scroll(function () {            Loading($('.dialog'));        });        $(window).resize(function () {            Loading($('.dialog'));        });        //弹出居中        function Loading($obj) {            //获取元素自身的宽度            var L1 = $obj.width();            //获取元素自身的高度            var H1 = $obj.height();            //获取实际页面的left值。(页面宽度减去元素自身宽度/2)            var Left = (document.documentElement.clientWidth - L1) / 2;            //获取实际页面的top值。(页面宽度减去元素自身高度/2)            var top = (document.documentElement.clientHeight - H1) / 2 + $(document).scrollTop();            $obj.css({ left: Left + 'px', top: top + 'px' });        }    })</script>
로그인 후 복사

 

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿