消毒机前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
2.7 KiB

2 years ago
2 years ago
  1. <template>
  2. <div class="disinfectant_liquid_container">
  3. <div class="top_progress">
  4. <svg
  5. class="icon"
  6. xmlns="http://www.w3.org/2000/svg"
  7. xmlns:xlink="http://www.w3.org/1999/xlink"
  8. fill="none"
  9. version="1.1"
  10. width="28"
  11. height="28.00116729736328"
  12. viewBox="0 0 28 28.00116729736328"
  13. >
  14. <g>
  15. <path
  16. d="M13.9994,0C6.26711,0,0,6.26827,0,14.0012C0,21.7329,6.26711,28.0012,13.9994,28.0012C21.7329,28.0012,28,21.7323,28,14.0012C28,6.26711,21.7329,0,13.9994,0ZM13.3306,2.65913L15.1107,2.65913L15.1107,6.15243L13.3306,6.15243L13.3306,2.65913ZM8.00532,9.19343L5.53538,6.72291L6.79393,5.46437L9.26387,7.93489L8.00532,9.19343ZM8.88432,3.93979L10.4945,3.18886L11.9713,6.35385L10.3594,7.10595L8.88432,3.93979ZM14.2445,24.2046C12.6966,24.2046,11.4433,22.9495,11.4433,21.4034C11.4433,20.1938,12.2088,19.1681,13.2828,18.7751L13.2828,10.7838L15.0612,10.7838L15.0612,18.7227C16.2091,19.0714,17.0462,20.139,17.0462,21.404C17.0462,22.9495,15.7923,24.2046,14.2445,24.2046ZM16.3302,6.35035L17.8071,3.1842L19.419,3.93688L17.9439,7.10304L16.3302,6.35035ZM20.2421,9.19343L18.9835,7.93489L21.4535,5.46437L22.712,6.72291L20.2421,9.19343Z"
  17. fill="#FFFFFF"
  18. fill-opacity="1"
  19. />
  20. </g>
  21. </svg>
  22. 消毒液
  23. <div class="progress">
  24. <div
  25. class="pro"
  26. :style="{
  27. '--height': '50px',
  28. }"
  29. ></div>
  30. </div>
  31. </div>
  32. <div class="bottom">500 (g)</div>
  33. </div>
  34. </template>
  35. <script setup></script>
  36. <style lang="scss" scoped>
  37. .disinfectant_liquid_container {
  38. width: 353px;
  39. height: 225px;
  40. box-sizing: border-box;
  41. border-radius: 17.5px;
  42. overflow: hidden;
  43. .top_progress {
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. position: relative;
  48. font-family: Source Han Sans CN;
  49. font-size: 40px;
  50. font-weight: bold;
  51. letter-spacing: 0.1em;
  52. color: #ffffff;
  53. width: 353px;
  54. height: 141px;
  55. box-sizing: border-box;
  56. .icon {
  57. top: 15px;
  58. left: 15px;
  59. position: absolute;
  60. }
  61. .progress {
  62. top: 19px;
  63. right: 29px;
  64. position: absolute;
  65. width: 6px;
  66. height: 100px;
  67. border-radius: 3px;
  68. background: #fff;
  69. overflow: hidden;
  70. .pro {
  71. position: absolute;
  72. bottom: 0;
  73. left: 0;
  74. width: 6px;
  75. height: var(--height);
  76. background: #1f6397;
  77. border-radius: 3px;
  78. }
  79. }
  80. }
  81. .bottom {
  82. display: flex;
  83. align-items: center;
  84. justify-content: center;
  85. background: #1f6397;
  86. font-family: Source Han Sans CN;
  87. font-size: 20px;
  88. font-weight: bold;
  89. letter-spacing: 0.06em;
  90. color: #ffffff;
  91. height: 84px;
  92. }
  93. }
  94. </style>