Banner Carousel
Documentation: Banner Carousel Component
Overview
Model Documentation
model
object that defines its behavior and appearance. Here's an in-depth look at the model properties:Model Structure
model
object contains the following properties:String
The unique identifier for the component, used for styling and referencing the component.
String
Optional CSS class(es) for styling the outer container of the carousel. Allows for custom styling.
String
Optional header text to display above the carousel. This is rendered as an
<h2>
element.Number
Defines the alignment of the header text. Possible values are:
1
: Left aligned (justify-content-start
)2
: Center aligned (justify-content-center
)3
: Right aligned (justify-content-end
)Array
An array of banner objects to be displayed in the carousel. Each banner object contains:
Object
String
URL to the background image.
String
Background color for the banner. This is applied using inline styles.
String
Header text displayed on the banner.
String
Subheader text displayed below the header.
String
Main text content for the banner.
String
Color of the text, applied using inline styles.
String
Text for the button, if present.
String
URL that the button links to.
Object
String
URL to an additional image to be displayed on the banner.
Number
Defines the layout pattern for the banners based on the number of columns. Possible values are 1 through 6. The layout pattern determines the width distribution of the banners.
Example Model
model
object might look like:{
"id": "banner-carousel-1",
"cssClass": "custom-carousel",
"header": "Our Latest Offers",
"alignment": 2,
"banners": [
{
"backgroundImage": { "link": "https://example.com/image1.jpg" },
"backgroundColor": "#f8f9fa",
"header": "Summer Sale",
"subHeader": "Up to 50% Off",
"text": "Check out our summer sale with discounts up to 50% on selected items.",
"textColor": "#333",
"buttonText": "Shop Now",
"buttonLink": "https://example.com/summer-sale",
"image": { "link": "https://example.com/banner1.jpg" }
},
{
"backgroundImage": { "link": "https://example.com/image2.jpg" },
"backgroundColor": "#e9ecef",
"header": "New Arrivals",
"subHeader": "Fresh Styles",
"text": "Explore the latest trends and new arrivals in our store.",
"textColor": "#666",
"buttonText": "Discover More",
"buttonLink": "https://example.com/new-arrivals",
"image": { "link": "https://example.com/banner2.jpg" }
}
],
"columns": 3
}
Component Structure
1.
2.
HTML Template
JavaScript
Steps to Create Your Own Banner Carousel Component
1.
Vue.component()
or app.component()
.template
option.2.
v-if
, v-for
, :class
, etc.) to bind data and control rendering.3.
props
to receive the model data from parent components.data()
to initialize component state.created()
to determine the layout pattern based on the number of columns.4.
5.
6.
Modified at 2024-08-27 07:48:26