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:
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.
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')
)