我想在我的角度应用开始渲染之前创建一个引导前加载页面。
我将此代码添加到index.html
中。但是,我注意到一秒钟左右的时间,显示的加载消息没有样式格式。之后,它会显示所应用的样式,从而带来抖动的体验。
有没有一种方法可以在应用加载之前显示带有样式的加载屏幕,从而避免抖动?
index.html
<!doctype html>
<html lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta charset="utf-8">
<title>My Application</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<style>
.loading-page {
background: #fff;
height: 100vh;
width: 100%;
position: absolute;
top: 0;
bottom: 0;
}
.loading-box {
width: 30vw;
margin: 12% auto;
}
.loading-box-body {
background: #fff;
padding: 0px;
border-top: 0;
color: #666;
}
.loading-box-msg {
font-size: 20px;
text-align: center;
}
</style>
</head>
<body>
<app-root>
<div class="loading-page">
<div class="loading-box">
<div class="loading-box-body">
<p class="loading-box-msg">Loading application. Please wait..</p>
</div>
</div>
</div>
</app-root>
</body>
</html>
我会把经验撒给work like this.
答案 0 :(得分:1)