All Projects β†’ RinteRface β†’ fullPage

RinteRface / fullPage

Licence: other
πŸ“„ fullPage.js, pagePiling.js and multiScroll.js for shiny

Programming Languages

r
7636 projects
CSS
56736 projects

Projects that are alternatives of or similar to fullPage

PlotsOfData
Shiny App for comparison of samples
Stars: ✭ 47 (-53%)
Mutual labels:  shiny
flipdownr
πŸ“†πŸ“†πŸ“† Implement a Countdown in RMarkdown Documents and Shiny Applications
Stars: ✭ 30 (-70%)
Mutual labels:  shiny
financial-asset-comparison-tool
R Shiny app to compare the relative performance of cryptos and equities.
Stars: ✭ 97 (-3%)
Mutual labels:  shiny
IDBacApp
A MALDI Mass Spectrometry Bioinformatics Platform
Stars: ✭ 20 (-80%)
Mutual labels:  shiny
blackspot
Shiny app exploring Edinburgh traffic collision data
Stars: ✭ 25 (-75%)
Mutual labels:  shiny
shiny-server-arm-docker
Shiny-Server in docker for ARM(armv7/arm64) and amd64. Most suitable to run on SBCs such as Raspberry Pi. Enables installing R-libraries on top of the bare image.
Stars: ✭ 26 (-74%)
Mutual labels:  shiny
cascadess
A style pronoun for {htmltools} tags
Stars: ✭ 18 (-82%)
Mutual labels:  shiny
Covid19
Dashboard developed in r shiny to provide insight on COVID-19 pandemic, analyzing data from public, reliable sources.
Stars: ✭ 15 (-85%)
Mutual labels:  shiny
epoxy
Extra-strength glue engines for R Markdown and Quarto
Stars: ✭ 141 (+41%)
Mutual labels:  shiny
tablerDash
tabler dashboard template for shiny
Stars: ✭ 72 (-28%)
Mutual labels:  shiny
openmetrics
An opinionated Prometheus client for R conforming to the OpenMetrics standard
Stars: ✭ 30 (-70%)
Mutual labels:  shiny
vueR
vue.js for R
Stars: ✭ 131 (+31%)
Mutual labels:  shiny
vembedr
Functions to Embed Video in HTML
Stars: ✭ 56 (-44%)
Mutual labels:  shiny
deejae
web app for exploring and visualising DJ sets
Stars: ✭ 28 (-72%)
Mutual labels:  shiny
shinyapps
code to reproduce my shiny apps
Stars: ✭ 28 (-72%)
Mutual labels:  shiny
DraggableRegressionPoints
Draggable regression points in R Shiny
Stars: ✭ 18 (-82%)
Mutual labels:  shiny
organisation
Organisation du soutien entre agents : moyens engagΓ©s, idΓ©es, etc.
Stars: ✭ 15 (-85%)
Mutual labels:  shiny
bubblyr
☁️ ☁️ ☁️ Beautiful Bubbles in Shiny and RMarkdown Backgrounds
Stars: ✭ 16 (-84%)
Mutual labels:  shiny
risk assessment
Risk Assessment App
Stars: ✭ 42 (-58%)
Mutual labels:  shiny
fabricerin
Create Easily Canvas in Shiny and RMarkdown Documents
Stars: ✭ 52 (-48%)
Mutual labels:  shiny

fullPage

Travis build status CRAN status

Many of the amazing works of Álvaro Trigo for Shiny!

FullPage

Installation

# install.packages("remotes")
remotes::install_github("RinteRface/fullPage")

Features

Includes the following frameworks:

All ships with:

  • Milligram grid, button, typography, and themes.

Demos

Online:

Locally:

demo("fullPage", package = "fullPage")
demo("pagePiling", package = "fullPage")
demo("multiPage", package = "fullPage")

Callbacks

fullPage

  • input$slide_origin: origin slide
  • input$slide_destination: destination slide
  • input$slide_direction: scroll direction

pagePiling & multiScroll

  • input$slide_anchor: slide anchor
  • input$slide_index: slide index
library(shiny)
library(fullPage)

ui <- fullPage(
  fullSection(
    menu = "first",
    center = TRUE,
    h1("Callbacks")
  ),
  fullSection(
    menu = "second",
    center = TRUE,
    h3("Slice"),
    verbatimTextOutput("slide")
  )
)

server <- function(input, output){
  
  output$slide <- renderPrint({
    input$slide_origin # returns menu
  })
  
}

shinyApp(ui, server)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].