gpt4 book ai didi

css - Shiny R 不读取自定义 CSS 文件

转载 作者:行者123 更新时间:2023-12-03 22:15:57 26 4
gpt4 key购买 nike

我能够成功使用 Shiny 的自定义主题,即

# Internal, hidden function
# Called by CherryPickPalette()
CustomPal <- function(new_pal){
if (interactive()){
cherrypickedpalette <- runApp(list(
ui = fluidPage(
theme = shinythemes::shinytheme("slate"),

将为应用程序提供以下外观和感觉

enter image description here

但是,如果我用自定义 .css 替换,程序会忽略它,即

自定义 CSS, h5.css
h5 {
color: orange;
text-align: center;
}

代码使用 h5.css
# Internal, hidden function
# Called by CherryPickPalette()
CustomPal <- function(new_pal){
if (interactive()){
cherrypickedpalette <- runApp(list(
ui = fluidPage(
theme = "h5.css",
titlePanel("Cherry Pick Your Own Palette!"),
sidebarPanel (hr(),
selectInput('col', 'Options', new_pal, multiple=TRUE, selectize=FALSE, size = 15)
),
mainPanel(
h5('Your Cherry-Picked Palette'),
fluidRow(column(12,verbatimTextOutput("col"))),

h5 文本,即“Your Cherry-Picked Palette”不受影响。

R 目录结构为 here

请帮忙!

enter image description here

最佳答案

我不确定为什么它不适用于此目录结构,但您可以尝试这样做:

ui = fluidPage(
# theme = "h5.css",
tags$head(includeCSS("R/www/h5.css")),
titlePanel("Cherry Pick Your Own Palette!"),
...
)

关于css - Shiny R 不读取自定义 CSS 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50823862/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com