orientation : landscape / portrait
показывать или прятать блок.alert {
display:none;
}
@media only screen
and (max-device-width : 768px)
and (orientation : portrait) {
.alert {
display:block
}
@media screen and (orientation: portrait) {
показываем блок с просьбой
}
var screenOrientation = orientationscreen.orientation || screen.mozOrientation || screen.msOrientation;
if (screenOrientation === "portrait-primary" || Math.abs(window.orientation) !== 90) {
показываем блок
}
if (window.innerWidth > window.innerHeight ) {
показываем блок
}