| centerTime | R Documentation | 
Move the window such that the given time is centered
centerTime(id, time, options)
| id | Timeline id or a  | 
| time | The date/time to center around | 
| options | Named list of options controlling the animation. Most common
option is  | 
## Not run: 
timevis() %>%
  centerTime(Sys.Date() - 1)
## End(Not run)
if (interactive()) {
library(shiny)
shinyApp(
  ui = fluidPage(
    timevisOutput("timeline"),
    actionButton("btn", "Center around 24 hours ago")
  ),
  server = function(input, output) {
    output$timeline <- renderTimevis(
      timevis()
    )
    observeEvent(input$btn, {
      centerTime("timeline", Sys.Date() - 1)
    })
  }
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.