gpt4 book ai didi

javascript - 使用javascript进行页面转换的步骤进度条

转载 作者:行者123 更新时间:2023-11-27 22:43:07 26 4
gpt4 key购买 nike

我已经创建了一个带有 css 的步骤进度条,我的目标是使用它来通过使用 javascript 进行页面转换。我正在考虑使用 iframe 来保存页面,但我不知道如何使用 javascript 控制转换。这是 HTML/CSS。

body {

color: #01ab97;
}

.progress {
margin: 100px auto;

}


ul {
text-align: center;
}

ul li {
display: inline-block;
width: 100px;
position: relative;
}

ul li .fa {
background-color: #ccc;
width: 18px;
height: 18px;
color: #fff;
border-radius: 50%;
padding: 5px;
}

ul li .fa::after {
content: '';
background-color: #ccc;
height: 5px;
width: 105px;
display: block;
position: absolute;
left: 0;
top: 63px;
z-index: -1;
}

ul li:nth-child(3) .fa {
background-color: #148e14;
}

ul li:nth-child(3) .fa::after {
background-color: #148e14;
}

ul li:nth-child(1) .fa,
ul li:nth-child(2) .fa {
background-color: #60aa97;
}

ul li:nth-child(1) .fa::after,
ul li:nth-child(2) .fa::after {
background-color: #60aa97;
}

ul li:first-child .fa::after {
width: 55px;
left: 50px;
}

ul li:first-child .fa::after {
width: 55px;
left: 50px;
}

ul li:last-child .fa::after {
width: 55px;
}
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>STEPS PROGRESS BAR</title>
<link rel="shortcut icon" href="">
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="progress">
<ul>
<li>
<p>Page 1</p>
<i class="fa fa-check"></i>
</li>
<li>
<p>Page 2</p>
<i class="fa fa-check"></i>
</li>
<li>
<p>Page 3</p>
<i class="fa fa-refresh"></i>
</li>
<li>
<p>Page 4</p>
<i class="fa fa-times"></i>
</li>
<li>
<p>Page 5</p>
<i class="fa fa-times"></i>
</li>
</ul>
</div>
</body>
</html>

我会很感激任何想法

最佳答案

如果您需要从服务器获取数据,您可以使用异步方法,只需使用javascript 将数据放入div。如果您的页面完全是文本,我认为您可以伪造进度条,如果有 Assets ,您可以使用它

https://andreupifarre.github.io/preload-it/docs/index.html

因此,例如,您可以首先解析您的页面以搜索 Assets ,将其用于进度条(使用预加载),完成后,将其放入容器,执行转换,任务完成

关于javascript - 使用javascript进行页面转换的步骤进度条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59736192/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com