| Server IP : 145.239.37.162 / Your IP : 216.73.217.74 Web Server : Apache System : Linux webm003.cluster130.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : verseaa ( 38250) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/verseaa/www/wp-content/themes/verseau/assets/js/ |
Upload File : |
// Appel les sections vidéos en fonction de la largeur d'écran
var $ = jQuery.noConflict();
$(document).ready(function(){
const container = document.getElementById("firstPage")
updateWindowSize()
function updateWindowSize() {
let small = window.matchMedia("(max-width: 480px)").matches
if (small) {
container.classList.remove("demo1")
container.classList.remove("svg_anim")
container.classList.add("demo1_mob")
container.classList.add("svg_anim_mob")
} else {
container.classList.remove("demo1_mob")
container.classList.remove("svg_anim_mob")
container.classList.remove("accroche-mob")
container.classList.add("demo1")
container.classList.add("svg_anim")
}
}
window.matchMedia("(max-width: 480px)").addListener(updateWindowSize)
});