web-dev-qa-db-ja.com

画面の解像度に関係なく、javascript cssポップアップdivを中央に配置するにはどうすればよいですか?

背景を無効にしながら新しいポップアップウィンドウを開く次のコードがあります。問題は、これを上から100px(CSS #dialogで取得済み)で、画面の中央にも配置する必要があることです。 、ユーザーの解像度に関係なく?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
    <script type="text/javascript">
        function showPopUp(el) {
            var cvr = document.getElementById("cover")
            var dlg = document.getElementById(el)
            cvr.style.display = "block"
            dlg.style.display = "block"
            if (document.body.style.overflow = "hidden") {
                cvr.style.width = "1024"
                cvr.style.height = "100%"
            }
        }
        function closePopUp(el) {
            var cvr = document.getElementById("cover")
            var dlg = document.getElementById(el)
            cvr.style.display = "none"
            dlg.style.display = "none"
            document.body.style.overflowY = "scroll"
        }
    </script>
    <style type="text/css">
        #cover {
            display:        none;
            position:       absolute;
            left:           0px;
            top:            0px;
            width:          100%;
            height:         100%;
            background:     gray;
            filter:         alpha(Opacity = 50);
            opacity:        0.5;
            -moz-opacity:   0.5;
            -khtml-opacity: 0.5
        }

        #dialog {
            display:    none;
            left:       100px;
            top:        100px;
            width:      300px;
            height:     300px;
            position:   absolute;
            z-index:    100;
            background: white;
            padding:    2px;
            font:       10pt tahoma;
            border:     1px solid gray
        }
    </style>
</head>
<body>
<div id="cover"></div>
<div id="dialog">
    My Dialog Content
    <br><input type="text">
    <br><input type="button" value="Submit">
    <br><a href="#" onclick="closePopUp('dialog');">[Close]</a>
</div>
<a href="#" onclick="showPopUp('dialog');">Show</a>

</body>
</html>
14
user1227914

CSSベース中心のソリューション:

これらのスタイルを使用して、それを真ん中に表示する必要があります。

position:absolute;
top:50%;
left:50%;
width:400px;  /* adjust as per your needs */
height:400px;   /* adjust as per your needs */
margin-left:-200px;   /* negative half of width above */
margin-top:-200px;   /* negative half of height above */

したがって、positionを指定する必要があります。 topおよびleft50%である必要があります。 margin-leftmargin-topは、それぞれボックスの幅と高さの負の半分にする必要があります。

ページがスクロールされてもポップアップが中央に表示されるようにしたい場合は、IE6では機能しないというドローバックを使用する代わりにposition:fixedを使用する必要があります。

41
Sarfraz

必要なものはlight-boxと呼ばれます。

それを作成するには、HTML、CSS、JSコードを変更する必要があります。

ライトボックスが「ログインフォーム」という文字列のみで構成されているとしましょう。 (必要なものはすべてそこに配置できます)HTMLコードは次のようになります。

<div id = "loginBox">login form</div>

次に、CSSで非表示にする必要があります。

div#loginBox {
    display: none;
}

これで、ボックスは表示されなくなりました。ボックスを上から100pxに変更します。

div#loginBox {
    display: none;
    top: 100px;
}

後で背景を無効にすることについて心配します。

次の仕事は、必要なときにボックスを表示するボタンを作成することです。かんたん:

<div id = "loginBox" >login form</div>
<a id = "displayButton">login</a>

「href」属性は必要ありません。クリックすると画面が移動し、その他の不要な動作が発生するためです。

JSを介してボタンにイベントハンドラーをアタッチします。

var IE = document.all ? true : false; // obligatory "browser sniffing"

function display_box() {
    document.getElementsById("loginBox").style.display = "inline-block"; // or "inline" 
}

window.onload = function() {
    var login_box = document.getElementsById("loginBox");
    if (!IE) {
        login_box.addEventListener( "click", display_box , false );
    }
    else {
        login_box.attachEvent( "onclick", display_box );
    }
}

しかし、画面の中央に配置したいですか?次に、関数は次のようになります。

function display_box() {
    var theBox = document.getElementsById("loginBox").style,
        left = document.width / 2 - 50;   // 150 because it is 300 / 2

    theBox.display = "inline-block";
    theBox.left = left.toString() + "px";
}

ある時点でウィンドウを閉じて、「背景を無効にした」効果を出したいと思うでしょう。これを行うには、画面全体に拡張するdivクラスを作成し、それに「表示」イベントをアタッチし、CSSにZインデックスを配置して、loginBoxが「無効な背景」の上にあることを確認し、「 "background" divのloginBox "イベントを閉じます。そして、最終的なコードは次のようになります。

もう1つはログインボタンの配置についてのみ注意することに注意してください。もう1つは表示されず、JSによって変更されます。

HTML:

<div id = "loginBox" >login</div>
<a id = "displayButton">login</a>
<div id = "backgroundDarkener"> </div>

CSS:

div#loginBox {
    display: none;
    top: 100px;
    width: 300px; #it is important to know the width of the box, to center it correctly
    z-index: 2;
}
div#backgroundDarkener {
    background: #000;
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.8; 
    # needless to say, you should play with opacity or if you want your
    # css to validate - background image (because I suspect it won't 
    # validate for old versions of IE, Safari, etc.) This is just a suggestion
}

JS:

var IE = document.all ? true : false; // obligatory "browser sniffing"

function display_box() {
    var theBox = document.getElementsById("loginBox").style,
        background = document.getElementsById("loginBox").style,
        left = document.width / 2 - 150;   // 150 is 300 / 2

    theBox.display = "inline-block";
    theBox.left = left.toString() + "px";
    background.display = "inline-block";
}
function hide_box() {
    document.getElementsById("loginBox").style.display = "none";
    document.getElementsById("backgroundDarkener").style.display = "none"; 
}

window.onload = function() {
    var login_box = document.getElementsById("loginBox"),
        background = document.getElementsById("backgroundDarkener");

    if (!IE) {
        login_box.addEventListener( "click", display_box , false );
        background.addEventListener( "click", hide_box , false );
    }
    else {
        login_box.attachEvent( "onclick", display_box );
        background.attachEvent( "onclick", hide_box );
    }
}
3
tsikov

これがflexboxが今救出する場所です!

.parent {
  display: flex;
  height: 300px; /* Or whatever */
}

.child {
  width: 100px;  /* Or whatever */
  height: 100px; /* Or whatever */
  margin: auto;  /* Magic! */
}
2
Ankur Tiwari

クイックGoogle検索が見つかりました this ;

function PopupCenter(pageURL, title,w,h) {
  var left = (screen.width/2)-(w/2);
  var top = (screen.height/2)-(h/2);
  var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);

} 
2
John Conde

これを行うだけです:

.body {
    position: relative;
}
.popup {
    position: absolute;
    max-width: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

画面やポップアップのサイズは関係ありません。これにより、<div class="popup"></div>が中央に配置されます。

1
Celso Soares

Divセンターを作成するには、次のスタイルを使用する必要があります。

width:500px; 
left:0;
right:0;
margin:0 auto;
1
lnegi

シンプル、margin: 100px auto;。 JavaScriptで計算を行う必要はありません。

実例

0
Madara Uchiha