Description Usage Arguments Examples
Allow to apply a zoom on a given element.
1  | 
id | 
 Use this argument if you want to target an individual element.  | 
class | 
 The element to which the zoom should be applied. For example, class is set to box.  | 
scale | 
 Zoom scale. 1.05 by default (5% bigger than the normal). We do not recommand using higher values, except in some particular cases.  | 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48  |  if (interactive()) {
  library(shiny)
  library(shinydashboard)
  library(shinydashboardPlus)
  library(shinyEffects)
  boxTag <- box(
   title = "A box",
   status = "warning",
   solidHeader = FALSE,
   collapsible = TRUE,
   p("Box Content")
  )
  shinyApp(
   ui = dashboardPage(
     header = dashboardHeader(),
     sidebar = dashboardSidebar(),
     body = dashboardBody(
      setZoom(class = "box"),
      setZoom(id = "my-progress"),
      tags$h2("Add zoom to the box class"),
      fluidRow(boxTag, boxTag),
      tags$h2("Add zoom only to the first element using id"),
      tagAppendAttributes(
       progressBar(
        value = 10,
        striped = TRUE,
        animated = TRUE,
        vertical = TRUE
       ),
       id = "my-progress"
      ),
      progressBar(
       value = 50,
       status = "warning",
       size = "xs",
      )
     ),
     controlbar = dashboardControlbar(),
     title = "DashboardPage"
   ),
   server = function(input, output) { }
  )
}
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.