私はmp3と画像の束を含むサイトで作業しています。すべてのコンテンツが読み込まれている間、読み込みgifを表示したいと思います。
これを実現する方法はわかりませんが、使用したいアニメーションgifはあります。
助言がありますか?
通常、これを行うには、ajaxを介してコンテンツをロードし、readystatechanged
イベントをリッスンして、ロードGIFまたはコンテンツでDOMを更新します。
現在どのようにコンテンツを読み込んでいますか?
コードは次のようになります。
function load(url) {
// display loading image here...
document.getElementById('loadingImg').visible = true;
// request your data...
var req = new XMLHttpRequest();
req.open("POST", url, true);
req.onreadystatechange = function () {
if (req.readyState == 4 && req.status == 200) {
// content is loaded...hide the gif and display the content...
if (req.responseText) {
document.getElementById('content').innerHTML = req.responseText;
document.getElementById('loadingImg').visible = false;
}
}
};
request.send(vars);
}
あなたの生活を楽にするサードパーティのjavascriptライブラリがたくさんありますが、上記は本当にあなたが必要とするすべてです。
あなたはAJAXでこれをしたくないと言った。 AJAXはこれに最適ですが、<body>
ロードします。次のようになります。
<html>
<head>
<style media="screen" type="text/css">
.layer1_class { position: absolute; z-index: 1; top: 100px; left: 0px; visibility: visible; }
.layer2_class { position: absolute; z-index: 2; top: 10px; left: 10px; visibility: hidden }
</style>
<script>
function downLoad(){
if (document.all){
document.all["layer1"].style.visibility="hidden";
document.all["layer2"].style.visibility="visible";
} else if (document.getElementById){
node = document.getElementById("layer1").style.visibility='hidden';
node = document.getElementById("layer2").style.visibility='visible';
}
}
</script>
</head>
<body onload="downLoad()">
<div id="layer1" class="layer1_class">
<table width="100%">
<tr>
<td align="center"><strong><em>Please wait while this page is loading...</em></strong></p></td>
</tr>
</table>
</div>
<div id="layer2" class="layer2_class">
<script type="text/javascript">
alert('Just holding things up here. While you are reading this, the body of the page is not loading and the onload event is being delayed');
</script>
Final content.
</div>
</body>
</html>
Onloadイベントは、すべてのページがロードされるまで発生しません。そのため、layer2 <DIV>
は、ページの読み込みが完了するまで表示されません。その後、onloadが起動します。
JQueryはどうですか?シンプルな...
$(window).load(function() { //Do the code in the {}s when the window has loaded
$("#loader").fadeOut("fast"); //Fade out the #loader div
});
およびHTML ...
<div id="loader"></div>
およびCSS ...
#loader {
width: 100%;
height: 100%;
background-color: white;
margin: 0;
}
次に、ローダーにdiv
でGIFと必要なテキストを配置します。ページがロードされると、それはフェードアウトします。
最初に、divに読み込みイメージを設定します。次に、div要素を取得します。次に、CSSを編集して可視性を「非表示」にする関数を設定します。今、<body>
、関数名にonloadを追加します。
#Pure cssメソッド
これをコードの先頭(ヘッダータグの前)に配置します
<style> .loader {
position: fixed;
background-color: #FFF;
opacity: 1;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: 10;
}
</style>
<div class="loader">
Your Content For Load Screen
</div>
そして、他のすべてのコード(/ htmlタグを除く)の後のThis At The Bottom
<style>
.loader {
-webkit-animation: load-out 1s;
animation: load-out 1s;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
@-webkit-keyframes load-out {
from {
top: 0;
opacity: 1;
}
to {
top: 100%;
opacity: 0;
}
}
@keyframes load-out {
from {
top: 0;
opacity: 1;
}
to {
top: 100%;
opacity: 0;
}
}
</style>
これは常に私にとって常に機能します
HTML5では<progress>
要素を使用できます。ソースコードとライブデモについては、このページを参照してください。 http://purpledesign.in/blog/super-cool-loading-bar-html5/
ここに進捗要素があります...
<progress id="progressbar" value="20" max="100"></progress>
これは、20から始まるロード値を持ちます。もちろん、エレメントだけで十分です。スクリプトのロード時に移動する必要があります。そのためには、JQueryが必要です。 0から100までの進行を開始し、定義されたタイムスロットで何かを行う簡単なJQueryスクリプトを次に示します。
<script>
$(document).ready(function() {
if(!Modernizr.meter){
alert('Sorry your brower does not support HTML5 progress bar');
} else {
var progressbar = $('#progressbar'),
max = progressbar.attr('max'),
time = (1000/max)*10,
value = progressbar.val();
var loading = function() {
value += 1;
addValue = progressbar.val(value);
$('.progress-value').html(value + '%');
if (value == max) {
clearInterval(animate);
//Do Something
}
if (value == 16) {
//Do something
}
if (value == 38) {
//Do something
}
if (value == 55) {
//Do something
}
if (value == 72) {
//Do something
}
if (value == 1) {
//Do something
}
if (value == 86) {
//Do something
}
};
var animate = setInterval(function() {
loading();
}, time);
};
});
</script>
これをHTMLファイルに追加します。
<div class="demo-wrapper html5-progress-bar">
<div class="progress-bar-wrapper">
<progress id="progressbar" value="0" max="100"></progress>
<span class="progress-value">0%</span>
</div>
</div>
これがあなたのスタートを切ることを願っています。
実際にこれを行うにはかなり簡単な方法があります。コードは次のようになります。
<script type="test/javascript">
function showcontent(x){
if(window.XMLHttpRequest) {
xmlhttp = new XMLHttpRequest();
} else {
xmlhttp = new ActiveXObject('Microsoft.XMLHTTP');
}
xmlhttp.onreadystatechange = function() {
if(xmlhttp.readyState == 1) {
document.getElementById('content').innerHTML = "<img src='loading.gif' />";
}
if(xmlhttp.readyState == 4 && xmlhttp.status == 200) {
document.getElementById('content').innerHTML = xmlhttp.responseText;
}
}
xmlhttp.open('POST', x+'.html', true);
xmlhttp.setRequestHeader('Content-type','application/x-www-form-urlencoded');
xmlhttp.send(null);
}
そしてHTMLで:
<body onload="showcontent(main)"> <!-- onload optional -->
<div id="content"><img src="loading.gif"></div> <!-- leave img out if not onload -->
</body>
私は自分のページでそのようなことをしましたが、うまくいきます。