1

如何更改 SwitchInput 元素的颜色(来自 ShinyWidgets 包)?

4

1 回答 1

2

首先,在您的函数中,您必须通过更改和参数switchInput()来指定“开”和“关”状态:onStatusoffStatus

switchInput(
                       inputId = "switch",
                       label = "Label", 
                       labelWidth = "120px", 
                       onLabel = "ON",
                       offLabel = "OFF",
                       onStatus = "danger",
                       offStatus = "info"
                     ),

然后,在您的 UI.r 文件或 Shiny 应用程序的 UI 部分中,添加以下 CSS 标记:

#switchInput color while on
            tags$head(tags$style(HTML('.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger,
                                       .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger {
                                        background: green;
                                        color: white;
                                        }'))),
            
#switchInput color while off
            tags$head(tags$style(HTML('.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info,
                                       .bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info {
                                        background: red;
                                        color: black;
                                        }'))),

用于background设置开关的背景颜色,以及color设置文本颜色。

于 2021-02-03T15:35:30.830 回答