bs4Jumbotron | R Documentation |
Create a jumbotron
bs4Jumbotron(
...,
title = NULL,
lead = NULL,
href = NULL,
btnName = "More",
status = c("primary", "warning", "danger", "info", "success")
)
jumbotron(
...,
title = NULL,
lead = NULL,
href = NULL,
btnName = "More",
status = c("primary", "warning", "danger", "info", "success")
)
... |
Any content. |
title |
Jumbotron title. |
lead |
Jumbotron lead. |
href |
Jumbrotron external link. |
btnName |
Jumbotron button name. |
status |
Jumbotron background color. "primary", "success", "warning", "danger" or "info". |
David Granjon, dgranjon@ymail.com
if(interactive()){
library(shiny)
library(bs4Dash)
shinyApp(
ui = dashboardPage(
header = dashboardHeader(),
sidebar = dashboardSidebar(),
controlbar = dashboardControlbar(),
footer = dashboardFooter(),
title = "Jumbotron",
body = dashboardBody(
jumbotron(
title = "Hello, world!",
lead = "This is a simple hero unit, a simple jumbotron-style
component for calling extra attention to featured
content or information.",
"It uses utility classes for typography and spacing
to space content out within the larger container.",
status = "primary",
href = "https://www.google.com"
)
)
),
server = function(input, output) {}
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.