我正在开发一个包含大量mp3和图像的网站,我想在加载所有内容时显示加载gif。
我不知道如何实现这一点,但我确实有想要使用的动画gif。
有什么建议吗?
答案 0 :(得分:28)
通常是通过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库可以让你的生活更轻松,但上面的确是你所需要的。
答案 1 :(得分:8)
你说你不想在AJAX中这样做。虽然AJAX非常适合这种情况,但是有一种方法可以在等待整个<body>
加载时显示一个DIV。它是这样的:
<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事件不会触发。因此,在页面加载完成之前,不会显示第2层<DIV>
,之后将触发onload。
答案 2 :(得分:3)
使用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和你想要的任何文字,一旦页面加载就会淡出。
答案 3 :(得分:2)
首先,在div中设置加载图像。接下来,获取div元素。然后,设置一个编辑css的功能,使隐藏&#34;隐藏&#34;。现在,在<body>
中,将onload放到函数名称中。
答案 4 :(得分:1)
#Pure css method
将其放在代码顶部(标题标记之前)
<style> .loader {
position: fixed;
background-color: #FFF;
opacity: 1;
height: 100%;
width: 100%;
top: 0;
left: 0;
z-index: 10;
}
</style>
&#13;
<div class="loader">
Your Content For Load Screen
</div>
&#13;
这是在所有其他代码(除了/ html标记之外)的底部
<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>
&#13;
这对我来说总是100%的时间
答案 5 :(得分:0)
实际上有一种非常简单的方法可以做到这一点。代码应该是这样的:
<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>
我在我的页面上做了类似的事情,效果很好。
答案 6 :(得分:0)
您可以在HTML5中使用<progress>
元素。有关源代码和现场演示,请参阅此页面。 http://purpledesign.in/blog/super-cool-loading-bar-html5/
这是进度元素......
<progress id="progressbar" value="20" max="100"></progress>
这将从20开始加载。当然只有元素不够。您需要在脚本加载时移动它。为此,我们需要JQuery。这是一个简单的JQuery脚本,它从0到100开始进度,并在定义的时间段内执行某些操作。
<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>
希望这会给你一个开始。