index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title class="title">[文件管理器]</title>
  6. <meta name="divport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
  7. <style type="text/css">
  8. .content {background: transparent;}
  9. .fixed {position: fixed;bottom: 0;left: 0;right: 0;width: 100%;}
  10. .content .mask {top: 0;background: rgba(0,0,0,.4);z-index: 90;}
  11. .content .file-content {z-index: 91;height: 60px;background: #fff;text-align: center;}
  12. .btn {position: relative;}
  13. .btn .file {position: absolute;z-index: 93;left: 0;right: 0;top: 0;bottom: 0;height: 60px;width: 100%;opacity: 0;}
  14. .btn-bg {margin-top: 10px;background: #0066CC;color: #fff;width: 80%;height: 40px;border: 0;border-radius: 5px;}
  15. .tis {top: 0;z-index: 95;display: none;justify-content: center;align-items: center;}
  16. .tis .tis-content {background: #fff;width: 60%;border-radius: 10px;padding: 20px 0;}
  17. .tis .tis-content img {width: 50px;height: 50px;}
  18. .tis-progress {margin: 10px 0;color: #999;}
  19. .cancel-btn {margin-top: 30px;height: 30px;line-height: 1;padding: 0 2em;background: #e3e3e3;color: #898989;border: 0;border-radius: 5px;}
  20. </style>
  21. </head>
  22. <body>
  23. <div class="content">
  24. <div class="fixed mask"></div>
  25. <div align="center" class="fixed tis">
  26. <div class="tis-content">
  27. <div>
  28. <img src="../../static/home.png" >
  29. </div>
  30. <div class="tis-progress">
  31. 努力上传中..
  32. </div>
  33. <div class="cancel">
  34. <button type="button" class="cancel-btn">取消上传</button>
  35. </div>
  36. </div>
  37. </div>
  38. <div class="fixed file-content">
  39. <div class="btn">
  40. <button type="button" class="btn-bg">打开文件管理器</button>
  41. <input class="file" type="file" />
  42. </div>
  43. </div>
  44. </div>
  45. <script type="text/javascript" src="https://js.cdn.aliyun.dcloud.net.cn/dev/uni-app/uni.webdiv.1.5.2.js"></script>
  46. <script src="js/h5-uploader.js" type="text/javascript" charset="utf-8"></script>
  47. </body>
  48. </html>