argonCarousel {argonR} | R Documentation |
Create a carousel
Description
Build an argon carousel
Usage
argonCarousel(..., id, floating = FALSE, hover_lift = FALSE, width = 6)
Arguments
... |
Slot for argonCarouselItem. |
id |
Carousel unique id. |
floating |
Whether to apply a floating effect. FALSE by default. |
hover_lift |
Whether to apply a lift effect on hover. FALSE by default. Not compatible with floating. Only if card_mode is TRUE. |
width |
Carousel width. |
Author(s)
David Granjon, dgranjon@ymail.com
Examples
if (interactive()) {
library(argonR)
argonCarousel(
id = "carousel2",
argonCarouselItem(
src = "https://demos.creative-tim.com/argon-design-system/assets/img/theme/img-1-1200x1000.jpg",
active = TRUE
),
argonCarouselItem(
src = "https://demos.creative-tim.com/argon-design-system/assets/img/theme/img-2-1200x1000.jpg",
active = FALSE
)
)
}
[Package argonR version 0.2.0 Index]