All Projects → tyluRp → vov

tyluRp / vov

Licence: other
✨ vov.css animations for shiny

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to vov

PhyloProfile
A phylogenetic profile analysis tool
Stars: ✭ 24 (+4.35%)
Mutual labels:  shiny
shiny-ob-analytics
obAnalytics Shiny front-end
Stars: ✭ 59 (+156.52%)
Mutual labels:  shiny
react-collapsed
A React custom-hook for creating flexible and accessible expand/collapse components.
Stars: ✭ 392 (+1604.35%)
Mutual labels:  css-animations
MAVIS
MAVIS: Meta Analysis via Shiny
Stars: ✭ 32 (+39.13%)
Mutual labels:  shiny
TraderBot
No description or website provided.
Stars: ✭ 39 (+69.57%)
Mutual labels:  shiny
Unleash-Shiny
https://rinterface.com/shiny/talks/RPharma2020/
Stars: ✭ 25 (+8.7%)
Mutual labels:  shiny
hexa
Awesome Css Animation. The documentation =>
Stars: ✭ 32 (+39.13%)
Mutual labels:  css-animations
ideal
Interactive Differential Expression AnaLysis - DE made accessible and reproducible
Stars: ✭ 24 (+4.35%)
Mutual labels:  shiny
Adjutant
Runs a pubmed query, returns results and allows user to explore high-level structure of returned documents
Stars: ✭ 59 (+156.52%)
Mutual labels:  shiny
signals-and-systems
Interactive visualizations for Dr. Richard Baraniuk's open-source "Signals and Systems" textbook. R / Shiny.
Stars: ✭ 31 (+34.78%)
Mutual labels:  shiny
LNnodeInsight
A DYOR engine for the Bitcoin Lightning Network
Stars: ✭ 16 (-30.43%)
Mutual labels:  shiny
animusjs
🎆 AnimusJS is the solution for combine JS and CSS animations.
Stars: ✭ 42 (+82.61%)
Mutual labels:  css-animations
pct-shiny
The Shiny map for Local Authorites
Stars: ✭ 20 (-13.04%)
Mutual labels:  shiny
Bitcoin-dashboard
A Shiny/R project able to visualize charts about Bitcoin price and performances.
Stars: ✭ 49 (+113.04%)
Mutual labels:  shiny
shiny-directory-input
An shiny input widget for selecting directories
Stars: ✭ 43 (+86.96%)
Mutual labels:  shiny
trackeRapp
An interactive web application for the analysis of sports data from GPS-enabled tracking devices
Stars: ✭ 27 (+17.39%)
Mutual labels:  shiny
VOSONDash
R Shiny application for interactive analysis of networks created by vosonSML.
Stars: ✭ 44 (+91.3%)
Mutual labels:  shiny
GAlogger
Log R Events and R Usage to Google Analytics
Stars: ✭ 23 (+0%)
Mutual labels:  shiny
shiny.fluent
Microsoft's Fluent UI for Shiny apps
Stars: ✭ 170 (+639.13%)
Mutual labels:  shiny
dragulaR
No description or website provided.
Stars: ✭ 62 (+169.57%)
Mutual labels:  shiny

vov

R build status CRAN status CRAN_Download_Badge Codecov test coverage

The goal of vov is to wrap vov.css into functions so they can be called on when developing a shiny application. Try out the demo here or check out the original here by Vaibhav Tandon. Alternatively, you can run a local copy with vov::run_demo().

Installation

Install the released version of vov from CRAN:

install.packages("vov")

Or install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("tylurp/vov")

Usage

You can use vov in a shiny app like so:

library(shiny)
library(vov)

ui <- fluidPage(
  use_vov(),
  swivel_vertical(
    h1("hello world!")
  )
)

server <- function(input, output, session) {

}

shinyApp(ui, server)

Where swivel_vertical(h1("fade_in_bottom_left")) returns:

x <- swivel_vertical(h1("hello world!"))
print(x)
#> <h1 class="vov swivel-vertical">hello world!</h1>

If you don’t want to load this package, go to the original repo here, download the CSS file, and write something like this in your UI code:

includeCSS("www/vov.css")
htmltools::tagAppendAttributes(h1("hello world"), class = "vov swivel-vertical")
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].