Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
impetrator
/
admin
/
js
:
video-on-scroll.js
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
//Play Video On Scroll window.addEventListener('load', videoScroll); window.addEventListener('scroll', videoScroll); function videoScroll() { if ( document.querySelectorAll('video[autoplay]').length > 0) { var windowHeight = window.innerHeight, videoEl = document.querySelectorAll('video[autoplay]'); for (var i = 0; i < videoEl.length; i++) { var thisVideoEl = videoEl[i], videoHeight = thisVideoEl.clientHeight, videoClientRect = thisVideoEl.getBoundingClientRect().top; if ( videoClientRect <= ( (windowHeight) - (videoHeight*.5) ) && videoClientRect >= ( 0 - ( videoHeight*.5 ) ) ) { thisVideoEl.play(); } else { thisVideoEl.pause(); } } } }