Показать сообщение отдельно
  #5 (permalink)  
Старый 24.11.2013, 15:53
Аватар для ruslan_mart
Профессор
Отправить личное сообщение для ruslan_mart Посмотреть профиль Найти все сообщения от ruslan_mart
 
Регистрация: 30.04.2012
Сообщений: 3,018

#layer {
	background: #FFF;
	border: 1px solid #555;
	bottom: 0;
	box-shadow: 0 0 10px #000;
	color: #AAA;
	display: none;
	left: 0;
	margin: auto;
	padding: 20px;
	position: fixed;
	right: 0;
	text-align: center;
	top: 0;
	z-index: 10;
}


<div id="layer">Я - скрытый слой!</div>


function cookie(a, b) {
	if(b) document.cookie = a+'='+escape(b)+'; expires = Mon, 01-Jan-2999 00:00:00 GMT; path=/';
	var c = '(?:; )?'+a+'=([^;]*);?', d = new RegExp(c);
	return d.test(document.cookie) ? decodeURIComponent(RegExp['$1']) : 0;
}

window.onload = function() {
	if(!cookie('layer')) setTimeout(function() {
		document.getElementById('layer').style.display = 'block';
		cookie('layer', true);
	}, 5000); //Появится через 5 сек.
}
Ответить с цитированием