Description Usage Arguments Value Examples
Displays a disconnected screen after ms
milliseconds of inactivity.
1 2 3 4 5 6 7 8 9 10 | rupture(
html = rupture_default(),
color = "#fff",
opacity = 1,
bg_color = "#333e48",
bg_image = NULL,
ms = 1000 * 60 * 15,
session = shiny::getDefaultReactiveDomain(),
box = FALSE
)
|
html |
Shiny tags to use as content for the disconnected screen,
generally |
opacity |
Opacity of background. |
bg_color, color |
Background color, color of text. |
bg_image |
Background image to use. |
ms |
Milliseconds before showing the disconnected screen,
defaults to |
session |
A valid shiny session. |
box |
Set to |
None
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | library(shiny)
ui <- fluidPage(
useSever(),
h1("rupture")
)
server <- function(input, output){
rupture(
tagList(
h1("Whoops"),
reconnect_button()
)
)
}
if(interactive())
shinyApp(ui, server)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.