信通院-灾备 图表源码(在产品图表库基础上进行修改),开发逻辑和产品图表库一致
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.html 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title></title>
  6. <style>
  7. * {
  8. margin: 0;
  9. padding: 0
  10. }
  11. body {
  12. position: absolute;
  13. left: 0;
  14. top: 0;
  15. width: 100%;
  16. height: 100%;
  17. font-family: PingFang SC, Helvetica Neue, Helvetica, Microsoft YaHei, Arial, "sans-serif";
  18. }
  19. .chartBox {
  20. width: 80%;
  21. height: 500px;
  22. position: absolute;
  23. left: 50%;
  24. top: 50%;
  25. transform: translate(-50%, -50%);
  26. overflow: hidden;
  27. background-color: #000;
  28. touch-action: none;
  29. -webkit-overflow-scrolling: touch;
  30. }
  31. .kuang{z-index: 4;opacity:0;text-align: left;padding:15px;position: absolute;top: 0px;left: 0px;background: #eebd1d;transition: all 0.4s linear;color: #ff4200;}
  32. .kuang .tit1{font-size: 14px;margin-bottom: 4px;}
  33. .kuang .tit2{font-size: 20px;}
  34. .kuang .tit2 .tit2b{font-size: 12px;margin-left: 5px;}
  35. .lizi{
  36. width: 1000px;
  37. height: 1000px;
  38. position: absolute;
  39. top: 0;
  40. left: 0;
  41. /*background: blueviolet;*/
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div class="chartBox"></div>
  47. </body>
  48. </html>