Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/JohnCoene/typedjs
⌨️ typed.js R htmlwidgets
https://github.com/JohnCoene/typedjs
htmlwidgets r rstats
Last synced: 3 months ago
JSON representation
⌨️ typed.js R htmlwidgets
- Host: GitHub
- URL: https://github.com/JohnCoene/typedjs
- Owner: JohnCoene
- License: other
- Created: 2017-02-13T07:51:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-12T09:33:56.000Z (almost 3 years ago)
- Last Synced: 2024-05-01T15:30:30.318Z (6 months ago)
- Topics: htmlwidgets, r, rstats
- Language: R
- Homepage:
- Size: 91.8 KB
- Stars: 14
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-shiny-extensions - typedjs - R htmlwidget for animated typing effect with typed.js. (UI Components / Animation Effects)
- jimsghstars - JohnCoene/typedjs - ⌨️ typed.js R htmlwidgets (R)
README
# typed
R implementation of [typed.js](https://github.com/mattboldt/typed.js/) for Rmarkdown.
## Installation
```r
# install.packages("remotes")
remotes::install_github("JohnCoene/typedjs")
```## Example
```r
library(typedjs)typed("Hello")
typed(
"Emphasis word with html.",
contentType = "html"
)
typed(
list(
shiny::h3("First sentence."),
shiny::h4("Second sentence")
),
typeSpeed = 2
)
```