Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tyluRp/vov
:sparkles: vov.css animations for shiny
https://github.com/tyluRp/vov
css css-animations r rstats shiny vov-css
Last synced: about 1 month ago
JSON representation
:sparkles: vov.css animations for shiny
- Host: GitHub
- URL: https://github.com/tyluRp/vov
- Owner: tylerlittlefield
- License: other
- Created: 2019-11-29T02:09:08.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-01T04:45:11.000Z (about 4 years ago)
- Last Synced: 2024-04-14T19:15:54.511Z (7 months ago)
- Topics: css, css-animations, r, rstats, shiny, vov-css
- Language: R
- Homepage: https://vov-pkg.netlify.com/
- Size: 72.2 MB
- Stars: 23
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```# vov
[![R build status](https://github.com/tyluRp/vov/workflows/R-CMD-check/badge.svg)](https://github.com/tyluRp/vov/actions)
[![CRAN status](https://www.r-pkg.org/badges/version/vov)](https://cran.r-project.org/package=vov)
[![CRAN_Download_Badge](https://cranlogs.r-pkg.org/badges/vov)](https://cran.r-project.org/package=vov)
[![Codecov test coverage](https://codecov.io/gh/tyluRp/vov/branch/master/graph/badge.svg)](https://codecov.io/gh/tyluRp/vov?branch=master)The goal of vov is to wrap [vov.css](https://github.com/vaibhav111tandon/vov.css) into functions so they can be called on when developing a shiny application. Try out the demo [here](https://tylerlittlefield.com/shiny/tyler/vov/) or check out the original [here](https://vaibhav111tandon.github.io/vov.css/) by Vaibhav Tandon. Alternatively, you can run a local copy with `vov::run_demo()`.
```{r demo, echo=FALSE}
knitr::include_graphics("man/figures/README-demo.gif")
```## Installation
Install the released version of `vov` from CRAN:
```r
install.packages("vov")
```Or install the development version from GitHub with:
``` r
# install.packages("devtools")
devtools::install_github("tylurp/vov")
```## Usage
You can use `vov` in a shiny app like so:
```{r, eval=FALSE}
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:
```{r, echo=FALSE}
library(shiny)
library(vov)
``````{r}
x <- swivel_vertical(h1("hello world!"))
print(x)
```If you don't want to load this package, go to the original repo [here](https://github.com/vaibhav111tandon/vov.css), download the CSS file, and write something like this in your UI code:
```{r, eval=FALSE}
includeCSS("www/vov.css")
htmltools::tagAppendAttributes(h1("hello world"), class = "vov swivel-vertical")
```