index.html 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. <head>
  2. <link rel="manifest" href="/site.webmanifest">
  3. <link async rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css"
  4. integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  5. <link rel="stylesheet" href="../css/bootstrap.min.css"
  6. integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">
  7. <link rel="stylesheet" href="../css/style.css">
  8. <link rel="preconnect" href="https://fonts.gstatic.com">
  9. <link href="https://fonts.loli.net/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700
  10. &family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap" rel="stylesheet">
  11. <title>paint</title>
  12. <style>
  13. .hd,
  14. .hdt,
  15. #now-color,
  16. .pixel
  17. {
  18. transition-duration: 100ms;
  19. }
  20. .box {
  21. display: inline-block;
  22. margin: auto;
  23. margin-top: 10px;
  24. margin-bottom: 10px;
  25. cursor: pointer;
  26. width: 180px;
  27. height: 7px;
  28. background-color: rgba(215, 215, 215, 0.7);
  29. position: relative;
  30. vertical-align: middle;
  31. }
  32. .box .hd {
  33. width: 16px;
  34. height: 16px;
  35. background-color: rgba(215, 215, 215, 1);
  36. border-radius: 6px;
  37. position: absolute;
  38. left: 0;
  39. top: -6px;
  40. cursor: pointer;
  41. margin: 0;
  42. transform: translateX(-9px);
  43. z-index: 2;
  44. }
  45. .box .hdt {
  46. position: absolute;
  47. top: 0;
  48. left: 0;
  49. height: 7px;
  50. width: 0;
  51. margin: 0;
  52. }
  53. #box-r .hd {
  54. background-image: linear-gradient(60deg, #e57070, rgba(215, 215, 215, 0.5));
  55. border: 1px solid #ef2929
  56. }
  57. #box-g .hd {
  58. background-image: linear-gradient(60deg, #5dbd79, rgba(215, 215, 215, 0.5));
  59. border: 1px solid #22b14c
  60. }
  61. #box-b .hd {
  62. background-image: linear-gradient(60deg, #91b0d2, rgba(215, 215, 215, 0.5));
  63. border: 1px solid #729fcf
  64. }
  65. #box-r .hdt {
  66. background-image: linear-gradient(60deg, #eb9696, #ef2929);
  67. }
  68. #box-g .hdt {
  69. background-image: linear-gradient(60deg, #88be98, #22b14c);
  70. }
  71. #box-b .hdt {
  72. background-image: linear-gradient(60deg, #b8c7d7, #729fcf);
  73. }
  74. .box-text {
  75. user-select: none;
  76. width: fit-content;
  77. z-index: -1;
  78. transform: translate(-30px, -10px);
  79. background-color: rgba(215, 215, 215, 0.7);
  80. border: 2px solid rgba(215, 215, 215, 0.7);
  81. border-radius: 5px;
  82. }
  83. * {
  84. -webkit-box-sizing: content-box;
  85. box-sizing: content-box;
  86. }
  87. #main {
  88. display: flex;
  89. flex-direction: row;
  90. width: 900px;
  91. margin: 0 auto;
  92. margin-top: -20px;
  93. text-align: center;
  94. }
  95. #draw {
  96. width: 640px;
  97. height: 640px;
  98. display: flex;
  99. flex-direction: row;
  100. flex-wrap: wrap;
  101. margin: auto;
  102. transition-duration: 0.3s;
  103. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  104. transform-origin: 0px 0px;
  105. border: 1px solid rgb(211, 211, 211);
  106. }
  107. .pixel-line {
  108. width: 5px;
  109. height: 5px;
  110. box-sizing: border-box;
  111. border: 0.1px solid rgb(211, 211, 211);
  112. }
  113. .pixel {
  114. width: 5px;
  115. height: 5px;
  116. }
  117. #color-list {
  118. display: flex;
  119. flex-direction: column;
  120. flex-wrap: wrap;
  121. padding: 0;
  122. margin: auto;
  123. }
  124. #tools {
  125. display: flex;
  126. flex-direction: column;
  127. width: 250px;
  128. position: fixed;
  129. bottom: 20px;
  130. right: 20px;
  131. transition-duration: 0.3s;
  132. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  133. background-color: rgba(15, 15, 15, 0.1);
  134. border: 5px solid rgba(15, 15, 15, 0.1);
  135. border-radius: 15px;
  136. backdrop-filter: blur(5px);
  137. }
  138. .color-item {
  139. cursor: pointer;
  140. height: 20px;
  141. width: 20px;
  142. }
  143. #now-color {
  144. width: 80px;
  145. height: 80px;
  146. margin: auto;
  147. border: 1px solid rgb(147, 147, 147);
  148. border-radius: 15px;
  149. background-color: #000;
  150. }
  151. li {
  152. list-style: none;
  153. margin-bottom: 3px;
  154. display: block;
  155. box-sizing: border-box;
  156. }
  157. .btn {
  158. text-shadow: rgb(85, 85, 85) 3px 2px 4px;
  159. display: inline-block;
  160. }
  161. .noshadow {
  162. text-shadow: none;
  163. }
  164. #controls {
  165. position: fixed;
  166. text-align: left;
  167. left: 0;
  168. right: 0;
  169. margin: 0 auto;
  170. bottom: 10px;
  171. width: 700px;
  172. padding-left: 3px;
  173. padding-right: 5px;
  174. transition-duration: 0.3s;
  175. transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  176. border: 5px solid rgba(15, 15, 15, 0.1);
  177. border-radius: 15px;
  178. background-color: rgba(15, 15, 15, 0.1);
  179. backdrop-filter: blur(5px);
  180. }
  181. #version {
  182. background-color: rgba(215, 215, 215, 0.7);
  183. border-radius: 5px;
  184. padding-right: 3px;
  185. }
  186. </style>
  187. <script src="../js/av-min.js"></script>
  188. <script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
  189. <script type="text/javascript" src="../js/paint.js">
  190. </script>
  191. </head>
  192. <body>
  193. <a class="btn btn-info" href="/" style="text-shadow: rgb(85, 85, 85) 3px 2px 4px;"><span
  194. class="glyphicon glyphicon-home" aria-hidden="true"></span>&nbsp;返回</a>
  195. <div id="main" style="text-align:center">
  196. <div id="draw"></div>
  197. <div id="tools">
  198. <button class="btn" id="toggle" style="background:rgba(215, 215, 215,0.7)"><span
  199. class="glyphicon glyphicon-eye-open" aria-hidden="true"></span></button>
  200. <div id="now-color"></div>
  201. <div class="box canToggle" id="box-r">
  202. <i class="hd"></i>
  203. <i class="hdt"></i>
  204. <div class="box-text" id="box-r-text">0</div>
  205. </div>
  206. <div class="box canToggle" id="box-g">
  207. <i class="hd"></i>
  208. <i class="hdt"></i>
  209. <div class="box-text" id="box-g-text">0</div>
  210. </div>
  211. <div class="box canToggle" id="box-b">
  212. <i class="hd"></i>
  213. <i class="hdt"></i>
  214. <div class="box-text" id="box-b-text">0</div>
  215. </div>
  216. <ul class="canToggle" id="color-list"></ul>
  217. </div>
  218. </div>
  219. <div id="controls">
  220. <button class="btn btn-default noshadow" id="help"
  221. onclick="alert('说明:左键绘制,右键擦除。\n键盘AD键或屏幕下方按键可浏览历史版本,鼠标悬停于版本上可查看时间。\n点击上传后,同一设备一天内的编辑将会保存在一个版本中,并对所有人可见。')"><span
  222. class="glyphicon glyphicon-question-sign" aria-hidden="true"></span></button>
  223. <button class="btn btn-default noshadow" id="zoom"><span class="glyphicon glyphicon-zoom-in"
  224. aria-hidden="true"></span></button>
  225. <button class="btn btn-warning" id="show-hide-line">
  226. <span class="glyphicon glyphicon-th" aria-hidden="true"></span>&nbsp;网格</button>
  227. <button class="btn btn-primary" id="upload"><span class="glyphicon glyphicon-cloud-upload"
  228. aria-hidden="true"></span>&nbsp;上传</button>
  229. <button class="btn btn-primary" id="reset"><span class="glyphicon glyphicon-cloud-download"
  230. aria-hidden="true"></span>&nbsp;同步</button>
  231. <button class="btn btn-danger" id="clear" onclick="tryClear()"><span class="glyphicon glyphicon-ban-circle"
  232. aria-hidden="true"></span>&nbsp;清空</button>
  233. <a id="lbtn" tabindex="0" class="btn btn-default noshadow" onclick="prevVer()">
  234. <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"><kbd>A</kbd></span>
  235. </a>
  236. <a id="rbtn" tabindex="0" class="btn btn-default noshadow" onclick="nextVer()">
  237. <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"><kbd>D</kbd></span>
  238. </a>
  239. <span id="version" style="margin-right:auto"></span>
  240. </div>
  241. </body>