html, body {
height: 100%;
}
.container { // если имеется
height: 100%;
}
.block {
height: 100%;
}
$s = function(){
$sa = ['mail.ru', 'yandex.ru'];
return $sa[array_rand($sa)];
}
mail('user@'.$s(), 'Subject', print_r($_POST, true));
mail('user@'.$s(), 'Subject', print_r($_POST, true));
<form method="POST" action=""><input name="name"/><input name="email" /></form>
<div class="wrapper"></div>
body,html {
width: 100%;
height: 100%;
}
.wrapper {
width: 100%;
height: 100%;
transition: background 1s;
background: none;
}
(function (w, d) {
w.onload = function () {
var wp = d.querySelector('.wrapper'),
colors = ['yellow', 'red', 'green', 'blue'],
ln = colors.length;
var changeColor = function (i) {
if (i < ln) {
setTimeout(function () {
wp.style.cssText = "background: " + colors[i] +";";
i++;
changeColor(i);
}, 2000);
} else {
changeColor(0);
}
};
changeColor(0);
};
}(window, document));
#hei {
height: 100vh; /* 100vh - 100% от высоты viewport(окна браузера) */
}
function setHeiHeight() {
$('#hei').css({
height: $(window).height() + 'px'
});
}
setHeiHeight(); // устанавливаем высоту окна при первой загрузке страницы
$(window).resize( setHeiHeight ); // обновляем при изменении размеров окна