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

pull/35/head
ZhengJin Fang 3 years ago committed by GitHub
parent 82c7b59650
commit 727e9ae9ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save