bs_accordion | R Documentation |
An accordion is a set of collapsible panels where, at most, one panel-body is visible.
bs_accordion(id) ## S3 method for class 'bsplus_accordion' bs_append(tag, title, content, ...) ## S3 method for class 'bsplus_accordion' bs_set_opts(tag, panel_type = "primary", use_heading_link = TRUE, ...)
id |
character, unique id for accordion |
tag |
|
title |
character (HTML) or |
content |
character (HTML) or |
... |
other arguments (not used) |
panel_type |
character, one of the standard Bootstrap types
|
use_heading_link |
logical, indicates whether to make the entire panel heading clickable. |
All of these functions return a bsplus_accordion
object
(which is also an htmltools::[tag][htmltools::tag]
, <div/>
), so you can
compose an accordion by piping. There are three parts to this system:
A constructor function for the accordion, bs_accordion()
A function to set options for subsequent panels, bs_set_opts()
A function to append a panel to the group, bs_append()
The verb append is used to signify that you can append an arbitrary number of panels to an accordion.
For the constructor, bs_accordion()
,
it is your responsibility to ensure that id
is unique
among HTML elements in your page. If you have non-unique id
's, strange things may
happen to your page.
bsplus_accordion
object (htmltools::[tag][htmltools::tag]
,
<div/>
)
https://getbootstrap.com/docs/3.3/javascript/#collapse-example-accordion
bs_accordion(id = "meet_the_beatles") %>% bs_set_opts(panel_type = "success", use_heading_link = TRUE) %>% bs_append(title = "John Lennon", content = "Rhythm guitar, vocals") %>% bs_set_opts(panel_type = "info") %>% bs_append(title = "Paul McCartney", content = "Bass guitar, vocals")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.