diff --git a/src/assets/speed.png b/src/assets/speed.png new file mode 100644 index 0000000..642d837 Binary files /dev/null and b/src/assets/speed.png differ diff --git a/src/components/boxes/KilnPressure.vue b/src/components/boxes/KilnPressure.vue index 517bf9b..1a1e055 100644 --- a/src/components/boxes/KilnPressure.vue +++ b/src/components/boxes/KilnPressure.vue @@ -1,19 +1,96 @@ - + diff --git a/src/components/boxes/KilnRuntime.vue b/src/components/boxes/KilnRuntime.vue index e0f0ff7..f52f46e 100644 --- a/src/components/boxes/KilnRuntime.vue +++ b/src/components/boxes/KilnRuntime.vue @@ -57,18 +57,28 @@ export default { font-size: 23px; letter-spacing: 4px; position: relative; - user-select: none; + z-index: 10; + user-select: none; } .text::after { content: ""; display: block; position: absolute; - left: 10%; - bottom: 16px; - height: 3px; - width: 80%; + z-index: 0; + left: 12%; + bottom: 10px; + height: 4px; + width: 76%; /* 渐变色 */ - background: linear-gradient(to left, #8ae7f800, #6fe2fff0, #52cbef00); + background: radial-gradient( + ellipse at center, + #6fe2ff, + #6fe2ffc0, + #52cbef80, + #52cbef30, + #52cbef00, + transparent + ); } diff --git a/src/components/common/DigitalBox.vue b/src/components/common/DigitalBox.vue index 7b46f22..9a32262 100644 --- a/src/components/common/DigitalBox.vue +++ b/src/components/common/DigitalBox.vue @@ -1,5 +1,11 @@ @@ -12,6 +18,10 @@ export default { type: String, default: "0", }, + wider: { + type: Boolean, + default: false, + }, }, data() { return {}; @@ -31,18 +41,28 @@ export default { background: url(../../assets/digit.png) no-repeat; background-size: 100% 100%; padding: 2px; - text-align: center; - user-select: none; + text-align: center; + user-select: none; } .digit { - font-family: '站酷庆科黄油体', sans-serif; - font-size: 32px; - line-height: 39px; + font-family: "站酷庆科黄油体", sans-serif; + font-size: 32px; + line-height: 39px; } .zhHans { - font-size: 18px; - line-height: 48px; + font-size: 18px; + line-height: 48px; +} + +.another-hw { + height: h(72px); + width: w(62px); +} + +.another-hw.digit { + font-size: 32px; + line-height: 32px; } diff --git a/src/components/layout/Main.vue b/src/components/layout/Main.vue index 509b173..cbb89f3 100644 --- a/src/components/layout/Main.vue +++ b/src/components/layout/Main.vue @@ -1,5 +1,5 @@