Enables vov by including the CSS file necessary for the animations.

use_vov()

Examples

if (interactive()) { library(shiny) library(vov) ui <- fluidPage( use_vov(), fade_in( h1("Hello world!") ) ) server <- function(input, output, session) {} shinyApp(ui, server) }