web页面延迟3秒跳转
程序员文章站
2022-07-14 17:57:45
...
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="4;url='http://localhost:7002/';"> //cotent 中数字是跳转的时间 URL是跳转的路径
<title>用户注册</title>
<style type="text/css">
body {
background: #555
}
.loading {
-webkit-animation: fadein 2s;
-moz-animation: fadein 2s;
-o-animation: fadein 2s;
animation: fadein 2s
}
@-moz-keyframes fadein {
from {
opacity: 0
}
to {
opacity: 1
}
}
@-webkit-keyframes fadein {
from {
opacity: 0
}
to {
opacity: 1
}
}
@-o-keyframes fadein {
from {
opacity: 0
}
to {
opacity: 1
}
}
@keyframes fadein {
from {
opacity: 0
}
to {
opacity: 1
}
}
.spinner-wrapper {
position: absolute;
top: 0;
left: 0;
z-index: 300;
height: 100%;
min-width: 100%;
min-height: 100%;
background: rgba(255,255,255,0.93)
}
.spinner-text {
position: absolute;
top: 45%;
left: 50%;
margin-left: -100px;
margin-top: 2px; //调整文字的位置
color: #000;
letter-spacing: 1px;
font-size: 20px;
font-family: Arial
}
.spinner {
position: absolute;
top: 45%;
left: 50%;
display: block;
margin-left: -160px;
width: 1px;
height: 1px; //调整转圈的位置
border: 30px solid rgba(255,0,0,1);
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
border-left-color: transparent;
border-right-color: transparent;
-webkit-animation: spin 1.5s infinite;
-moz-animation: spin 1.5s infinite;
animation: spin 1.5s infinite
}
@-webkit-keyframes spin {
0%,100% {
-webkit-transform: rotate(0deg) scale(1)
}
50% {
-webkit-transform: rotate(720deg) scale(0.6)
}
}
@-moz-keyframes spin {
0%,100% {
-moz-transform: rotate(0deg) scale(1)
}
50% {
-moz-transform: rotate(720deg) scale(0.6)
}
}
@-o-keyframes spin {
0%,100% {
-o-transform: rotate(0deg) scale(1)
}
50% {
-o-transform: rotate(720deg) scale(0.6)
}
}
@keyframes spin {
0%,100% {
transform: rotate(0deg) scale(1)
}
50% {
transform: rotate(720deg) scale(0.6)
}
}
</style>
<script>
var count = 3;
var interval = window.setInterval("timeout()",1000);
function timeout() {
var s=document.getElementById("spinner");
s.innerHTML="注册成功,页面将在"+count+"秒后跳转"; //定时器控制跳转
count--;
}
</script>
</head>
<body>
<div class="loading">
<div class="spinner-wrapper">
<span class="spinner-text" ><h2 id="spinner">注册成功,页面将在3秒后跳转</h2></span>
<span class="spinner"></span>
</div>
</div>
</body>
</html>
上一篇: 二叉树的层平均值
下一篇: Android中生成带logo的二维码
推荐阅读
-
html跳转到同一个页面的不同位置_html/css_WEB-ITnose
-
JS 控制页面超时后自动跳转到登陆页面_html/css_WEB-ITnose
-
求大神指导如何使【手机浏览器】输入【www网址】自动跳转【手机版】页面!!_html/css_WEB-ITnose
-
HTML meta refresh 刷新与跳转(重定向)页面_html/css_WEB-ITnose
-
Nginx实现404页面跳转到任意随机页面_html/css_WEB-ITnose
-
MVC页面的跳转和加载_html/css_WEB-ITnose
-
android重写webview长按时选择文字然后点击搜索按钮的事件,默认是chrome接受点击事件,现在跳转到360搜索页面_html/css_WEB-ITnose
-
非手机用户跳转到web页面,自动转向
-
同一个表单,根据单击的按钮跳转到不同的页面_html/css_WEB-ITnose
-
8.用户模块:跳转到登录页面_html/css_WEB-ITnose