在使用 jQuery 实现“页面加载”动画时,可以使用以下步骤:
<div id="loading-animation">
<img src="loading.gif" alt="Loading..." />
</div>
#loading-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
$(document).ready()
方法在页面加载完成时隐藏动画元素:$(document).ready(function() {
$('#loading-animation').fadeOut('slow');
});
$(window).on('load', function() {...})
方法在页面所有资源加载完成时隐藏动画元素:$(window).on('load', function() {
$('#loading-animation').fadeOut('slow');
});
完整的代码示例如下:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>页面加载动画</title>
<style>
#loading-animation {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(255, 255, 255, 0.8);
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
</style>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
</head>
<body>
<div id="loading-animation">
<img src="loading.gif" alt="Loading..." />
</div>
<!-- 页面其他内容 -->
<script>
$(document).ready(function() {
$('#loading-animation').fadeOut('slow');
});
$(window).on('load', function() {
$('#loading-animation').fadeOut('slow');
});
</script>
</body>
</html>
这样,在页面加载时,就会显示指定的动画元素,当页面加载完成后,动画元素会逐渐消失。
北极星训练营
云+社区沙龙online [技术应变力]
腾讯云数据湖专题直播
云+社区技术沙龙[第8期]
云+社区技术沙龙[第28期]
云+社区技术沙龙[第14期]
企业创新在线学堂
腾讯云GAME-TECH游戏开发者技术沙龙
云+社区技术沙龙[第1期]
领取专属 10元无门槛券
手把手带您无忧上云