Показать сообщение отдельно
  #1 (permalink)  
Старый 25.02.2014, 14:31
Новичок на форуме
Отправить личное сообщение для Chigr Посмотреть профиль Найти все сообщения от Chigr
 
Регистрация: 25.02.2014
Сообщений: 3

Помогите пожалуйста с Popup
Как вставить второй такой же попап????? не могу разобраться...
Заранее спасибо.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<link href="css/style.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script>
<script>
$(document).ready(function(){
//Скрыть PopUp при загрузке страницы
PopUpHide();
});
//Функция отображения PopUp
function PopUpShow(){
$("#popup2").show();
}
//Функция скрытия PopUp
function PopUpHide(){
$("#popup2").hide();
}
</script>
</head>

<body>

<div class="b-container">
Sample Text
<a href="javascript:PopUpShow()">Show popup</a>
</div>
<div class="b-popup" id="popup2">
<div class="b-popup-content">
Text in Popup
<a href="javascript:PopUpHide()">Hide popup</a>
</div>
</div>

</body>
</html>

CSS

* {
font-family: Areal;
}
.b-container {
width:200px;
height:150px;
background-color: #ccc;
margin:0px auto;
padding:10px;
font-size:30px;
color: #fff;
}
.b-popup {
width:100%;
min-height:100%;
background-color: rgba(0, 0, 0, 0.5);
overflow:hidden;
position:fixed;
top:0px;
}
.b-popup .b-popup-content {
margin:40px auto 0px auto;
width:100px;
height: 40px;
padding:10px;
background-color: #c5c5c5;
border-radius:5px;
box-shadow: 0px 0px 10px #000;
}
Ответить с цитированием