Politique de cookies (EU)

 

//jQuery(function() { // jQuery('#mavideo .et_pb_video_box video').attr("loop",true).prop("muted", true); // jQuery('#mavideo .et_pb_video_box video').get(0).play(); //}); jQuery(function ($) { const $videos = $('#mavideo .et_pb_video_box video'); if ($videos.length) { $videos.each(function () { this.loop = true; this.muted = true; this.setAttribute('playsinline', ''); // mobile const playPromise = this.play(); if (playPromise !== undefined) { playPromise.catch(function () { // Autoplay bloqué : tentative après interaction utilisateur $(document).one('click touchstart', function () { $videos.each(function () { this.play(); }); }); }); } }); } });