CRP 23165

Dúvidas contato@marcostrider.com.br

document.addEventListener('DOMContentLoaded', function() { var slides = document.querySelectorAll('.video-carousel .swiper-slide'); slides.forEach(function(slide) { var video = slide.querySelector('video'); if (video) { video.muted = true; // Garante que esteja mutado para autoplay // Tenta reproduzir o vídeo automaticamente var playPromise = video.play(); if (playPromise !== undefined) { playPromise.then(function() { // Reprodução iniciada com sucesso }).catch(function(error) { console.log('Erro ao iniciar o vídeo:', error); }); } slide.addEventListener('mouseenter', function() { if (video.paused) { video.play(); } }); slide.addEventListener('mouseleave', function() { video.pause(); }); } }); });