KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
shiny.slider
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
SpineAnimationBuilder
:
build animation from a exist spine type file
E2E_Testing_with_Puppeteer_Starter
:
No description available.
fomu-tests
:
Test cases and scripts for Fomu
ga4gh-service-info
:
GA4GH service-info specification.
XMOS-XU216_FB236-BOARD
:
XMOS XU216_FB236 BOARD made in KiCad
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
shiny.slider
?
Download (.md)
# shiny.slider An answer to a stackoverflow question: https://stackoverflow.com/questions/53881741/swipe-effect-for-images-in-shiny-r.  Usage: run app.R or ``` # runApp("C:/R/shiny.slider/R") library(shiny) ui <- fluidPage( tags$script(src = "jquery-1.6.1.min.js"), tags$script(src = "jquery-ui-1.8.13.custom.min.js"), tags$script(src = "jquery.beforeafter-1.4.min.js"), tags$script(" $(function() { $('#slider').beforeAfter({ introDelay: 2000, imagePath: 'img/', introDuration: 500, showFullLinks: false }) }); "), mainPanel( tags$div( id = "slider", img( src = "img/Polar-Bear-SliderTest1.jpg", width = 800, height = 533 ), img( src = "img/Polar-Bear-SliderTest2.jpg", width = 800, height = 533 ) ) ) ) server <- function(input, output, session){} shinyApp(ui, server) ``` (This project is part of my life long application to RStudio :))