{"id":13857630,"url":"https://github.com/tylerlittlefield/vov","last_synced_at":"2026-03-10T07:02:36.597Z","repository":{"id":56936130,"uuid":"224759497","full_name":"tylerlittlefield/vov","owner":"tylerlittlefield","description":":sparkles: vov.css animations for shiny","archived":false,"fork":false,"pushed_at":"2020-09-01T04:45:11.000Z","size":75672,"stargazers_count":23,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-12-13T05:53:59.273Z","etag":null,"topics":["css","css-animations","r","rstats","shiny","vov-css"],"latest_commit_sha":null,"homepage":"https://vov-pkg.netlify.com/","language":"R","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tylerlittlefield.png","metadata":{"files":{"readme":"README.Rmd","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-11-29T02:09:08.000Z","updated_at":"2025-10-19T20:24:56.000Z","dependencies_parsed_at":"2022-08-21T01:10:27.388Z","dependency_job_id":null,"html_url":"https://github.com/tylerlittlefield/vov","commit_stats":null,"previous_names":["tylurp/vov"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/tylerlittlefield/vov","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tylerlittlefield%2Fvov","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tylerlittlefield%2Fvov/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tylerlittlefield%2Fvov/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tylerlittlefield%2Fvov/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tylerlittlefield","download_url":"https://codeload.github.com/tylerlittlefield/vov/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tylerlittlefield%2Fvov/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30326893,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","css-animations","r","rstats","shiny","vov-css"],"created_at":"2024-08-05T03:01:42.408Z","updated_at":"2026-03-10T07:02:36.550Z","avatar_url":"https://github.com/tylerlittlefield.png","language":"R","funding_links":[],"categories":["R","UI Components"],"sub_categories":["Animation Effects"],"readme":"---\noutput: github_document\n---\n\n\u003c!-- README.md is generated from README.Rmd. Please edit that file --\u003e\n\n```{r, include = FALSE}\nknitr::opts_chunk$set(\n  collapse = TRUE,\n  comment = \"#\u003e\",\n  fig.path = \"man/figures/README-\",\n  out.width = \"100%\"\n)\n```\n\n# vov \u003cimg src=\"man/figures/vov-logo.png\" align=\"right\" height=150/\u003e\n\n\u003c!-- badges: start --\u003e\n[![R build status](https://github.com/tyluRp/vov/workflows/R-CMD-check/badge.svg)](https://github.com/tyluRp/vov/actions)\n[![CRAN status](https://www.r-pkg.org/badges/version/vov)](https://cran.r-project.org/package=vov)\n[![CRAN_Download_Badge](https://cranlogs.r-pkg.org/badges/vov)](https://cran.r-project.org/package=vov)\n[![Codecov test coverage](https://codecov.io/gh/tyluRp/vov/branch/master/graph/badge.svg)](https://codecov.io/gh/tyluRp/vov?branch=master)\n\u003c!-- badges: end --\u003e\n\nThe 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()`.\n\n```{r demo, echo=FALSE}\nknitr::include_graphics(\"man/figures/README-demo.gif\")\n```\n\n## Installation\n\nInstall the released version of `vov` from CRAN:\n\n```r\ninstall.packages(\"vov\")\n```\n\nOr install the development version from GitHub with:\n\n``` r\n# install.packages(\"devtools\")\ndevtools::install_github(\"tylurp/vov\")\n```\n\n## Usage\n\nYou can use `vov` in a shiny app like so:\n\n```{r, eval=FALSE}\nlibrary(shiny)\nlibrary(vov)\n\nui \u003c- fluidPage(\n  use_vov(),\n  swivel_vertical(\n    h1(\"hello world!\")\n  )\n)\n\nserver \u003c- function(input, output, session) {\n\n}\n\nshinyApp(ui, server)\n```\n\nWhere `swivel_vertical(h1(\"fade_in_bottom_left\"))` returns:\n\n```{r, echo=FALSE}\nlibrary(shiny)\nlibrary(vov)\n```\n\n```{r}\nx \u003c- swivel_vertical(h1(\"hello world!\"))\nprint(x)\n```\n\nIf 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:\n\n```{r, eval=FALSE}\nincludeCSS(\"www/vov.css\")\nhtmltools::tagAppendAttributes(h1(\"hello world\"), class = \"vov swivel-vertical\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftylerlittlefield%2Fvov","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftylerlittlefield%2Fvov","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftylerlittlefield%2Fvov/lists"}