I'm building a Shiny app that displays various pre-rendered .png and .svg images across multiple tabs, with some of the images being chosen through different types of input. To add some pizzazz, I'd like to add animations to the images that play…
Basically i want to have a grid of tiles on my dashboard that when the user clicks one tiler there is an anmiation where all the other tiles disappear and the one that the user clicked goes towards the center of the page and some text appears. Is…
I am trying to use the shinyanimate package to continuously animate an image element in my shiny app.
I tried to use a while loop to check if the session was open, but I'm not sure why this approach is not…
I'm using ggplotly in a shinyApp. The application works fine with ggplotly for normal graphs. However, when I tried to add animation to the graph, the graph only showed movements of the points not the whole graph. The code is running without errors…
I have the following code as part of my app:
library(shinyBS)
library(shiny)
#ui----
ui = basicPage(
actionButton("show", "Create a New Analysis")
)
#server----
server = function(input, output, session) {
#Show modal when button is…