在r shiny中,我添加了一个pdf文件的帮助链接,该文件在点击时在新浏览器上打开。左边是徽标,右边是链接。在运行应用程序时,左侧的徽标清晰可见,但帮助链接不可见。但是当光标悬停在浏览器右侧的该位置时,它以淡入淡出的颜色可见。但是,如果浏览器还原,则链接会清晰可见。
以下是ui代码:
library(shiny)
library(shinydashboard)
dashboardPage(
dashboardHeader(title = "flex_logo",
tags$li(class = "dropdown",
tags$p(h4(a("Help",target="_blank",href="Flex-Forecasting_Usage_Guidelines.pdf"),
style="font-weight: bold;color:red;")))
),
dashboardSidebar(
radioButtons("filetype", "Select file type",choices=c("csv file","xlsx file"))
),
dashboardBody()
)
这是服务器代码
shinyServer(function(input,output){
})
我希望链接始终清晰可见。我可能正在做一些非常基本的事情。
请建议。
答案 0 :(得分:0)
问题是您的color:red
未应用于您的主播a
代码!
修改后的代码:
library(shinydashboard)
dashboardPage(
dashboardHeader(title = "flex_logo",
tags$li(class = "dropdown",
tags$a("Help",target="_blank",href="Flex-Forecasting_Usage_Guidelines.pdf",
style="font-weight: bold;color:red;"))
),
dashboardSidebar(
radioButtons("filetype", "Select file type",choices=c("csv file","xlsx file"))
),
dashboardBody()
)