knitr::opts_chunk$set( collapse = TRUE, comment = "#>" )
library(slickR)
The most flexible implementaton of slickR
is by building your own DOM elements and passing them into slickR
.
We build the img DOM from scratch:
img_bare <- htmltools::tags$img(src = nba_player_logo$uri[1])
slickR::slickR(img_bare)
imgs_bare <- lapply(nba_player_logo$uri[c(1:5)],function(x){ htmltools::tags$img(src = x) })
slickR::slickR(imgs_bare)
slick_div
is an S3
method which accepts different object classes such as character
, shiny.tag
,htmlwidget
, xml_document
objects. It will also internally convert a vector a elements so the user does not need to use lapply in their script.
It will also add some css style to the elements to center them in the carousel.
htmltools::css(marginLeft='auto',marginRight='auto')
slickR::slickR(slick_div(nba_player_logo$uri[c(1:5)]))
We can also mix three different DOM types: img
, p
, iframe
. In the iframe
we will place a leaflet
htmlwidget.
We put in Lorem ipsum into the paragraph
p <- htmltools::tags$p( "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.", style = htmltools::css(color='red','font-style' = 'italic') )
w <- slick_div( x = leaflet::addTiles(leaflet::leaflet()), css = htmltools::css( height = '400px', marginLeft ='auto', marginRight='auto') )
To pass a list of shiny.tag
elements into slickR
we first convert the individual shiny.tag
into a tagList
using slick_list
.
doms <- slick_list(img_bare,p,w)
slickR::slickR(doms) + settings(dots = TRUE, adaptiveHeight = TRUE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.