-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
banana.gif not dancing #6
Comments
Hello, Victor |
The gif is saved locally in the www folder of the shiny app directory. |
What code did you use ? |
Something along these lines:
|
Everything seems fine, what browser do you use ? Have you tried with an another gif ? Can you try : library(shiny)
library(shinybusy)
ui <- fluidPage(
add_busy_gif(
src = logo_silex(),
height = 100, width = 100
),
actionButton("sleep", "After pressing the button, GIF should spin")
)
server <- function(input, output, session) {
observeEvent(input$sleep, {
Sys.sleep(5)
})
}
shinyApp(ui, server) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I am on firewall regulated network, so online access to js dependencies might be an issue. I cannot make the gifs to animate. The .gif is located in the www folder.
The example that you provide, my fav - the dancing banana, the banana just sits statically in the top right corner.
The ffox console is showing:
freezeframe.js : image not done processing ! banana.gif
Any idea what would work?
The text was updated successfully, but these errors were encountered: