Relative Content

Tag Archive for javavideohover

video reset on hover out instead of pause ! java script

const videos = document.querySelectorAll(” .hover_video_wrapper .video”); //Loop over videos to add eventListeners for (const video of videos) { //Play on Mouseover video.addEventListener(‘mouseover’, function() { video.play(); // Feel free to add functionalty here }, false); //Play on Mouseout video.addEventListener(‘mouseout’, function() { // Feel free to add functionalty here video.pause(); }, false); } This is a java […]