You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xshop/resources/views/segments/clips/AutoPlayClips/AutoPlayClips.js

20 lines
628 B
JavaScript

document.addEventListener('DOMContentLoaded', function () {
document.querySelectorAll('.autoplay-clip-item').forEach(function (el) {
el.addEventListener('mouseenter', function () {
try {
this.querySelector('video').play();
this.querySelector('i').style.display = 'none';
} catch {
}
});
el.addEventListener('mouseleave', function () {
try {
this.querySelector('video').pause();
this.querySelector('i').style.display = 'block';
} catch {
}
});
});
});