popup.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <title>test</title>
  5. <meta charset="UTF-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=11,IE=10,IE=9,IE=8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
  8. <meta name="apple-mobile-web-app-title" content="CodeDay">
  9. <meta http-equiv="Cache-Control" content="no-siteapp">
  10. <style>
  11. body, html {
  12. margin: 0;
  13. }
  14. button {
  15. width: 96%;
  16. border: none;
  17. height: 30px;
  18. background-color: #009fe9;
  19. color: white;
  20. cursor: pointer;
  21. user-select: none;
  22. box-shadow: 1px 1px 4px #968a8a;
  23. margin: 0 2%;
  24. margin-top: 5px;
  25. }
  26. .user-bar {
  27. font-family: "Microsoft YaHei";
  28. font-size: 12px;
  29. line-height: 26px;
  30. background-color: #009fe9;
  31. color: white;
  32. padding: 0 10px;
  33. }
  34. .no-script {
  35. display: none;
  36. }
  37. .no-scheme .loading {
  38. display: none;
  39. }
  40. .no-scheme .no-script {
  41. display: block;
  42. }
  43. .scheme .loading {
  44. display: none;
  45. }
  46. .scheme .button-box {
  47. display: block;
  48. }
  49. .login {
  50. display: none;
  51. }
  52. .script-box {
  53. width: 200px;
  54. height: 200px;
  55. overflow: auto;
  56. position: relative;
  57. }
  58. .loading, .no-script {
  59. width: 160px;
  60. position: absolute;
  61. left: 0;
  62. right: 0;
  63. top: 0;
  64. bottom: 0;
  65. margin: auto;
  66. }
  67. .button-box {
  68. display: none;
  69. }
  70. .no-script img {
  71. width: 100%;
  72. }
  73. .no-script p {
  74. line-height: 20px;
  75. text-align: center;
  76. margin: 0;
  77. padding: 0;
  78. color: #999;
  79. font-size: 14px;
  80. }
  81. </style>
  82. </head>
  83. <body>
  84. <div class="user-bar">
  85. <span class="user"></span>
  86. <div class="login">登录</div>
  87. </div>
  88. <div class="script-box">
  89. <img class="loading" src="./img/loading.svg">
  90. <div class="no-script">
  91. <img src="./img/no-script.svg">
  92. <p>此页面没有适用脚本!</p>
  93. </div>
  94. <div class="button-box">
  95. </div>
  96. </div>
  97. <script type="text/javascript" src="js/popup.js"></script>
  98. </body>
  99. </html>