The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.
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()
.
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")
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")
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.