速度调节
This commit is contained in:
@@ -385,6 +385,61 @@ a:hover { text-decoration: underline; }
|
||||
color: #4fc3f7;
|
||||
}
|
||||
|
||||
/* 运行页速度控制面板 */
|
||||
.speed-panel {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 16px;
|
||||
}
|
||||
.speed-row {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
}
|
||||
.speed-label {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
color: #b0c4de;
|
||||
}
|
||||
.speed-val {
|
||||
font-weight: bold;
|
||||
font-size: 15px;
|
||||
color: #4fc3f7;
|
||||
min-width: 80px;
|
||||
text-align: right;
|
||||
}
|
||||
.speed-slider {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 100%;
|
||||
height: 8px;
|
||||
background: #1a2d3d;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
.speed-slider::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
border-radius: 50%;
|
||||
background: #4fc3f7;
|
||||
cursor: pointer;
|
||||
border: 2px solid #0f1923;
|
||||
box-shadow: 0 0 6px rgba(79, 195, 247, 0.4);
|
||||
}
|
||||
.speed-slider::-moz-range-thumb {
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
border-radius: 50%;
|
||||
background: #4fc3f7;
|
||||
cursor: pointer;
|
||||
border: 2px solid #0f1923;
|
||||
}
|
||||
|
||||
/* 双摄像头预览布局 */
|
||||
.camera-row {
|
||||
display: grid;
|
||||
|
||||
Reference in New Issue
Block a user