Jump to content
  • 0

Всплывающее окно


Sikor
 Share

Question

Есть вот такая часть страницы:


<script type="text/javascript">
function ShowPopup(id) {
document.getElementById('popupIframe').src = '...someurl...';
document.getElementById('popupIframeContainer').style.display = 'block';
}

function HidePopup() {
document.getElementById('popupIframe').src = null;
document.getElementById('popupIframeContainer').style.display = 'none';
}
</script>

<div id="popupIframeContainer" style="position: fixed; display: none; border: thin solid black; left: 20px; top: 20px; background-color: White">
<input type="button" value="X" onclick="HidePopup()"/>
<iframe id="popupIframe">
</iframe>
</div>

При некотором действии на странице вызывается ShowPopup, который должен выводить "всплывающее окошко". Как сделать:

  1. Сделать неактивным (заблокированным) весь контент страницы под всплывающим окном?
  2. Как затемнить страницу под всплывающем окном?
  3. Как установить всплывающее окно по центру браузера?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

При некотором действии на странице вызывается ShowPopup, который должен выводить "всплывающее окошко". Как сделать:

  1. Сделать неактивным (заблокированным) весь контент страницы под всплывающим окном?
  2. Как затемнить страницу под всплывающем окном?
  3. Как установить всплывающее окно по центру браузера?

1, 2. разместить поверх страницы чёрный полупрозрачный слой


.sloy
{
position:fixed;
width:100%;
height:100%;
left:0;
top:0;
background:#000; /* ( или путь к файлу с полупрозрачным фоном ) */
opacity:0.5;
z-index:999;
}

И ещё при открытии окна применить к body overflow:hidden

3. Если окно фикс. ширины и высоты


.okno
{
position:fixed;
width:400px;
height:400px;
left:50%;
top:50%;
margin-top:-200px;
margin-left:-200px;
z-index:1000;
}

Edited by CalvinKlein
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy