ant-design/site/theme/template/Home/util.tsx

16 lines
393 B
TypeScript
Raw Normal View History

2019-12-26 15:27:52 +08:00
/* eslint-disable import/prefer-default-export */
export function preLoad(list: string[]) {
if (typeof window !== 'undefined') {
// 图处预加载;
const div = document.createElement('div');
div.style.display = 'none';
document.body.appendChild(div);
list.forEach(src => {
const img = new Image();
img.src = src;
div.appendChild(img);
});
}
}