library(shiny)
shinyUI(pageWithSidebar(
headerPanel("Sliders"),
sidebarPanel(
sliderInput("integer", "Integer: ", min=0, max=1000, value=500),
sliderInput("decimal", "Decimal: ", min=0, max=1, value=0.5, step=.1),
sliderInput("range", "Range: ", min=1, max=1000, value=c(200, 500)),
sliderInput("animate", "Animate:: ", min=0, max=10000, value=0, step=2500, animate=TRUE),
sliderInput("animation", "Looping Animation", 1, 2000, 1, step=10, animate=animationOptions(interval=300, loop=T))
),
mainPanel(
tableOutput("values")
)
))