新增实验功能:强度衰减

* 可设置输出指定次数波形后强度衰减指定值
This commit is contained in:
2024-05-29 01:37:58 +08:00
parent 9100d2d431
commit a109a58c87
4 changed files with 85 additions and 38 deletions

View File

@@ -685,8 +685,6 @@ select {
color: #000;
}
.settings-window {
position: fixed;
top: 10%;
@@ -700,6 +698,25 @@ select {
z-index: 100;
padding: 20px;
}
.settings-window-body {
overflow-y: auto;
height: 500px;
}
.settings-window-body::-webkit-scrollbar {
width: 10px; /* 宽度 */
}
.settings-window-body::-webkit-scrollbar-track {
background: transparent; /* 轨道颜色 */
}
.settings-window-body::-webkit-scrollbar-thumb {
background: #ffe99d; /* 滚动条颜色 */
}
.settings-window-body::-webkit-scrollbar-thumb:hover {
background: #ffe99d; /* 滚动条鼠标悬停颜色 */
}
.tag {
background: #fce9a7;