-
Notifications
You must be signed in to change notification settings - Fork 2
/
README.Rmd
76 lines (54 loc) · 1.9 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# hover
<!-- badges: start -->
[![R build status](https://github.com/r4fun/hover/workflows/R-CMD-check/badge.svg)](https://github.com/r4fun/hover/actions)
[![Codecov test coverage](https://codecov.io/gh/r4fun/hover/branch/master/graph/badge.svg)](https://codecov.io/gh/r4fun/hover?branch=master)
[![CRAN status](https://www.r-pkg.org/badges/version/hover)](https://CRAN.R-project.org/package=hover)
<!-- badges: end -->
The goal of hover is to add animations to `shiny::actionButton`, `shiny::downloadButton`, and `shiny::icon` using [Hover.css](https://github.com/IanLunn/Hover). Additionally, a button to refresh web browser is also included.
## Installation
Install the released version of `hover` from CRAN:
```r
install.packages("hover")
```
Or install the development version from GitHub with:
``` r
# install.packages("devtools")
devtools::install_github("r4fun/hover")
```
## Example
Animate a button and icon by providing the animation name:
```r
library(shiny)
library(hover)
ui <- fluidPage(
use_hover(),
hover_action_button(
inputId = "btn",
label = "hello hover!",
icon = icon("refresh"),
button_animation = "rotate",
icon_animation = "spin"
)
)
server <- function(input, output, session) {
}
shinyApp(ui, server)
```
The `hover` package essentially takes the `shiny::actionButton` source code and applies the necessary Hover.css classes to make things move.
## Acknowledgements
This package was built using the following tools:
* [Hover.css](https://github.com/IanLunn/Hover), the underlying CSS
* [shiny](https://github.com/rstudio/shiny), the source code for `hover_button`
Without these, this package wouldn't have been possible.