一个HTML5的loding页面
时间: 2024-05-27 14:12:13 浏览: 124
<!DOCTYPE html>
<html>
<head>
<title>Loading Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body {
background-color: #f1f1f1;
font-family: Arial, sans-serif;
}
.loader {
border: 16px solid #f3f3f3;
border-top: 16px solid #3498db;
border-radius: 50%;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
margin: 15% auto;
display: flex;
align-items: center;
justify-content: center;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.loading-text {
text-align: center;
font-size: 24px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="loader"></div>
<p class="loading-text">Loading...</p>
</body>
</html>
阅读全文