<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Submission Progress</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: #f0f2f5;
}
.container {
max-width: 600px;
margin: 50px auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1 {
color: #333;
text-align: center;
}
.progress-bar {
position: relative;
height: 10px;
background-color: #ddd;
border-radius: 5px;
margin: 20px 0;
}
.progress-bar-fill {
height: 100%;
background-color: #007bff;
width: 0;
border-radius: 5px;
transition: width 0.3s;
}
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
.form-group input, .form-group textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
font-size: 1em;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: #007bff;
color: white;
font-size: 1em;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Form Submission Progress</h1>
<div class="progress-bar">
<div class="progress-bar-fill" id="progressBar"></div>
</div>
<form onsubmit="simulateProgress(event)">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<button type="submit">Submit</button>
</form>
</div>
<script>
function simulateProgress(event) {
event.preventDefault();
const progressBar = document.getElementById('progressBar');
let width = 0;
const interval = setInterval(() => {
if (width >= 100) {
clearInterval(interval);
} else {
width += 10;
progressBar.style.width = width + '%';
}
}, 100);
}
</script>
</body>
</html>
表单提交进度条
原创mb64cc5144d532c ©著作权
©著作权归作者所有:来自51CTO博客作者mb64cc5144d532c的原创作品,请联系作者获取转载授权,否则将追究法律责任
上一篇:带有动画效果的加载器
下一篇:自适应导航栏
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
控制台打印进度条
控制台打印进度条,实时展示任务进度。
进度条 System Java -
bootstrap-进度条--彩色进度条
bootstrap-进度条--彩色进度条
进度条 彩色 bootstrap -
bootstrap-进度条--条纹进度条
bootstrap-进度条--条纹进度条
进度条 bootstrap 条纹 -
Ajax提交进度显示实例
概述:ajax提交比较大的文件的时候,我们希望能够看到它上传的进度,代码放下面了。
xml ajax jquery html 无法连接