用了jq但是没反应(在官网也下载引入了) 不知道原因在哪
<!DOCTYPE html>
<html>
<head>
<title></title>
<script src="jquery-3.2.1.min.js"></script>
<script>
document.onreadystatechange=function(){
if(document.readyState=="complete"){
$('25.gif').fadeOut();
};
</script>
</head>
<style type="text/css">
.loading{
width: 100%;
height: 100%;
position: fixed;top:0;left: 0;z-index: 100;
background-color: white;
}
.loading .pic{
width: 64px;
height: 64px;
position: absolute;top: 0;bottom: 0;left: 0;right: 0;
margin: auto;
background:url(25.gif);
}
</style>
<body>
<div class="loading">
<div class="pic"></div>
</div>
<img src="timg-1.jpeg">
</body>
</html>