我对什么应该是一个非常基本的编码测试有点困惑。我正在使用本教程中的步骤:
http://jquerybyexample.blogspot.com/2012/06/show-loading-image-while-page-is.html
但是,由于某种原因,loader.gif 图像会出现,但不会淡出。我非常感谢您提供的任何帮助。
<!DOCTYPE html>
<head>
<title>Test</title>
<script>
$(window).load(function(){
$('#dvLoading').fadeOut(2000);
});
</script>
<style type="text/css">
#dvLoading
{
background:#000 url(images/loader.gif) no-repeat center center;
height: 100px;
width: 100px;
position: fixed;
z-index: 1000;
left: 50%;
top: 50%;
margin: -25px 0 0 -25px;
}
</style>
</head>
<body>
<div id="dvLoading"></div>
<img src="images/about.jpg" width="498" height="383" />
</body>
</html>