html 页面加载动画
时间: 2023-11-09 19:02:05 浏览: 118
形状加载动画Canvas特效
可以使用 CSS3 的动画或者 JavaScript 实现页面加载动画。其中,CSS3 动画可以通过设置 @keyframes 规则来定义动画效果,然后将其应用到元素上;JavaScript 实现则可以通过在页面加载时添加一个遮罩层和一个 loading 图标,等页面加载完成后再将其移除。
以下是一个使用 CSS3 实现的页面加载动画的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>Page Loading Animation</title>
<style>
.loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: #fff;
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}
.loading::after {
content: "";
display: block;
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid #ccc;
border-top-color: #000;
animation: spin 1s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="loading"></div>
<!-- 页面内容 -->
</body>
</html>
```
阅读全文