Description Usage Arguments Details Examples
Animation to wheel out (disappear) a UI element from the left.
1 2 3 4 5 6 7  | 
ui | 
 A UI element  | 
duration | 
 Duration of animation  | 
delay | 
 Delay in seconds before animation starts  | 
steps | 
 Animation steps  | 
iteration | 
 Iteration of animation  | 
Duration expects one of: "fast" = 800 milliseconds, "faster" = 500 milliseconds, "fastest" = 300 milliseconds, "slow" = 2 seconds, "slower" = 3 seconds, "slowest" = 4 seconds,
Delay expects one of: 0, 1, 2, 3, 4, 5, no delay if left NULL
Steps expects one of: 10, 20, 30, 40, 50, no steps if left NULL
Iteration expects one of: 1, 2, 3, 4, 5, infinite, no iteration if left NULL
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15  | if (interactive()) {
  library(shiny)
  library(vov)
  ui <- fluidPage(
    use_vov(),
    wheel_out_left(
      h1("Hello world!")
    )
  )
  server <- function(input, output, session) {}
  shinyApp(ui, server)
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.