aniview | R Documentation |
Programmatically animate Shiny and R Markdown content when it comes into view.
aniview(element, animation, ...)
element |
An shiny or rmarkdown element. |
animation |
An animation from animate.css |
... |
Additional class element |
if (interactive()) {
library(shiny)
shinyApp(
ui = fluidPage(
use_aniview(), # add use_aniview() in the UI
aniview(h1("Shiny with AniView"), animation = "fadeInUp"),
aniview(textOutput("text"), animation = "zoomIn")
),
server <- function(input, output, session){
output$text <- renderText({ print("An animated text.") })
}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.