ページ(または何らかの要素)がロードされていることを示すために、ある種のオーバーレイで作業しています。div
ページまたは対象となる要素のいずれかの中央に配置された「読み込み中...」というメッセージを配置しようとしています。
これは私のアプローチですが、まったく機能していません...
var left, top,
position = 'fixed';
if (this.container !== 'body'){
position = 'absolute';
}
left = (window.innerWidth - this.element.offsetWidth) / 2;
top = (window.innerHeight/2) - (this.element.offsetHeight/ 2);
this.modal.style.left = left + 'px';
this.modal.style.top = top + 'px';
this.modal.style.position = position;
jQuery はなく、jQuery を使用するつもりはないと述べてください。