fix: PDF/word图片模式预览时, 下翻图片时频繁请求图片资源

This commit is contained in:
ZhengJin Fang
2021-11-10 16:27:55 +08:00
committed by GitHub
parent 82c7b59650
commit 727e9ae9ed

View File

@ -19,8 +19,12 @@ function checkImgs() {
}
function loadImg(el) {
var source = el.getAttribute("data-src");
el.src = source;
var loaded = el.getAttribute("loaded");
if (!Boolean(loaded)) {
var source = el.getAttribute("data-src");
el.setAttribute("loaded", true);
el.src = source;
}
}
// var mustRun = 500
// function throttle(fn, mustRun) {