| visibilityFuncs {shinyjs} | R Documentation |
Display or hide an HTML element.
show makes an element visible, hide makes
an element invisible, toggle displays the element if it it
hidden and hides it if it is visible.
If condition is given to toggle, that condition will be used
to determine if to show or hide the element. The element will be shown if the
condition evaluates to TRUE and hidden otherwise. If you find
yourself writing code such as if (test()) show(id) else hide(id)
then you can use toggle instead: toggle(id = id, condition = test()).
show(id, anim, animType, time, selector) hide(id, anim, animType, time, selector) toggle(id, anim, animType, time, selector, condition)
id |
The id of the element/Shiny tag |
anim |
If |
animType |
The type of animation to use, either |
time |
The number of seconds to make the animation last (default: |
selector |
JQuery selector of the elements to show/hide. Ignored if the
|
condition |
An optional argument to |
If you want to hide/show an element in a few seconds rather than immediately,
you can use the delay function.
shinyjs must be initialized with a call to useShinyjs()
in the app's ui.
useShinyjs,
runExample,
hidden,
delay
if (interactive()) {
library(shiny)
shinyApp(
ui = fluidPage(
useShinyjs(), # Set up shinyjs
actionButton("btn", "Click me"),
textInput("text", "Text")
),
server = function(input, output) {
observeEvent(input$btn, {
# Change the following line for more examples
toggle("text")
})
}
)
}
## Not run:
# The shinyjs function call in the above app can be replaced by
# any of the following examples to produce similar Shiny apps
toggle(id = "text")
delay(1000, toggle(id = "text")) # toggle in 1 second
toggle("text", TRUE)
toggle("text", TRUE, "fade", 2)
toggle(id = "text", time = 1, anim = TRUE, animType = "slide")
show("text")
show(id = "text", anim = TRUE)
hide("text")
hide(id = "text", anim = TRUE)
## End(Not run)
## toggle can be given an optional `condition` argument, which
## determines if to show or hide the element
if (interactive()) {
shinyApp(
ui = fluidPage(
useShinyjs(),
checkboxInput("checkbox", "Show the text", TRUE),
p(id = "element", "Watch what happens to me")
),
server = function(input, output) {
observe({
toggle(id = "element", condition = input$checkbox)
})
}
)
}