您的位置:首页 > 娱乐 > 明星 > h5成品网站_日本软银集团最大股东_无锡整站百度快照优化_重庆seo顾问服务

h5成品网站_日本软银集团最大股东_无锡整站百度快照优化_重庆seo顾问服务

2024/12/21 20:13:51 来源:https://blog.csdn.net/sphinx1122/article/details/144302840  浏览:    关键词:h5成品网站_日本软银集团最大股东_无锡整站百度快照优化_重庆seo顾问服务
h5成品网站_日本软银集团最大股东_无锡整站百度快照优化_重庆seo顾问服务

纯JS写的,简单的上传进度条,当上传的文件较大,加一个动态画面,就不会让人觉得出错了或网络卡了

<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Upload Animation</title><style>body{padding: 50px;}.downloadlist .progress-bar {flex-basis: 60%;background: rgb(145, 231, 19);height: 20px;line-height: 18px;border-radius: 10px;overflow: hidden;position: relative;text-align: center;}.downloadlist .progress {height: 100%;width: 100%;}.downloadlist .uploading {background: repeating-linear-gradient(-45deg,#4caf50,#4caf50 10px,#66bb6a 10px,#66bb6a 20px);background-size: 200% 100%;animation: stripes 30s linear infinite;/* 修改动画时间为30秒 */}@keyframes stripes {from {background-position: 200% 0;}to {background-position: -200% 0;}}</style>
</head><body><div class="downloadlist"><div class="progress-bar"><div class="progress uploading">上传中..</div></div></div><br><button id="startButton">开始动画</button><button id="stopButton">停止动画</button><script>document.addEventListener('DOMContentLoaded', () => {const progressBar = document.querySelector('.progress.uploading');const startButton = document.getElementById('startButton');const stopButton = document.getElementById('stopButton');startButton.addEventListener('click', () => {// 添加运行中的动画类progressBar.classList.add('uploading');});stopButton.addEventListener('click', () => {// 移除运行中的动画类progressBar.textContent = "已完成"progressBar.classList.remove('uploading');});});</script>
</body></html>

在这里插入图片描述
在这里插入图片描述

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com