Questions tagged [shinyanimate]

Questions addressing R-package shinyanimate

shinyanimate is a wrapper to use animate.css for shiny UIs in an R environment.

5 questions
2
votes
1 answer

Animating static images in Shiny

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…
Mark_1
  • 331
  • 1
  • 3
  • 16
1
vote
0 answers

Tiles/Notecards - Click on Animation - Shiny R

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…
0
votes
1 answer

How to continuously loop animation in shiny with session information

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…
mdb_ftl
  • 423
  • 2
  • 14
0
votes
1 answer

ggplotly animation showing only animation not showing main graph line inside ShinyApp

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…
SimpleNEasy
  • 879
  • 3
  • 11
  • 32
0
votes
1 answer

Incorporating Animation into insertUI

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…
M.Yosh
  • 47
  • 5