Global Selling |
Get 10% Off On First Order |
100% Secure Payments Dismiss
const videos = document.querySelectorAll("video");
videos.forEach(video => {
video.addEventListener("mouseover", function () {
this.play();
});
video.addEventListener("mouseout", function () {
this.pause();
});
});