芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/critterchoice.com/wp-content/themes/rehub-theme/js/videolazy.js
/*Lazy load video*/ const lazyvid = document.getElementsByClassName('rh_lazy_load_video'); if(lazyvid.length){ function updateVideo() { let id = this.dataset.videoid; let width = this.dataset.width; let height = this.dataset.height; let hoster = this.dataset.hoster; this.classList.add("video-container"); this.classList.remove("rh_videothumb_link"); this.classList.remove("cursorpointer"); if(hoster=='vimeo'){ this.innerHTML = '
'; }else if(hoster=='youtube'){ this.innerHTML = '
'; } } for (i = 0; i < lazyvid.length; i++) { lazyvid[i].addEventListener("click", updateVideo); } }