| setBackgroundImage {shinyWidgets} | R Documentation |
Allow to change the background image of your shinyapp.
setBackgroundImage(src = NULL)
src |
Background url or path. |
Use with moderation. The image while cover the entire screen (no repeat, cover).
## Not run:
if (interactive()) {
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
tags$h2("Add a shiny app background image"),
setBackgroundImage(src = "http://wallpics4k.com/wp-content/uploads/2014/07/470318.jpg")
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
}
## End(Not run)