Package 'bubblyr'

Title: Beautiful Bubbles for 'shiny' and 'rmarkdown' Backgrounds
Description: Creates bubbles within 'shiny' and 'rmarkdown' backgrounds using the 'bubbly-bg' 'JavaScript' library.
Authors: Mohamed El Fodil Ihaddaden [aut, cre], David Åse [cph] (bubbly-bg library)
Maintainer: Mohamed El Fodil Ihaddaden <[email protected]>
License: MIT + file LICENSE
Version: 0.1.2
Built: 2024-08-23 02:30:18 UTC
Source: https://github.com/feddelegrand7/bubblyr

Help Index


Add beautiful interactive bubbles within Shing and RMarkdown backgrounds

Description

Add beautiful interactive bubbles within Shing and RMarkdown backgrounds

Usage

bubbly(theme = "ocean", color = "white")

Arguments

theme

Name of the bubbles theme. See the vignette for a list of themes.

color

Text color. Defaults to 'white'

Value

Themed interactive bubbles for Shiny and RMarkdown backgrounds

Examples

if (interactive()) {

 ui <- fluidPage(

 bubbly(theme = "meteor")

 )


 server <- function(input, output) {}



 shinyApp(ui = ui, server = server)




}