Image
Image

Claps
0
Date
Contenu
Titre
What's up ? Tout savoir sur Bordeaux-Marseille
Heading
Titre 2
Corps de texte
body {
background-color: #eee;
margin: 10px;
}
.iframe-class {
width: 100%;
max-width: 100vw;
min-height:640px;
border: none;
-webkit-overflow-scrolling: touch;
}
var setMaxHeight = function () {
var ua = window.navigator.userAgent;
var iOS = !!ua.match(/iPad/i) || !!ua.match(/iPhone/i);
var webkit = !!ua.match(/WebKit/i);
var iframe = document.body.querySelector(".iframe-class");
if (iOS && webkit) {
// height of h1 + height of Safari navigation bar
iframe.style.height = window.innerHeight - 160 + "px";
}
else {
// height of h1
iframe.style.height = window.innerHeight - 120 + "px";
};
}
window.addEventListener('resize', setMaxHeight);