Hero Carousel
Documentation: Hero Carousel Component
Overview
tns
(Tiny Slider) library for smooth, responsive carousel functionality.Model Documentation
model
object configures the Hero Carousel Component, defining its structure, slide data, and other settings.Model Structure
String
A unique identifier for the carousel component, used in the HTML element ID.
String
Optional CSS class(es) for additional styling of the carousel container.
String
Optional header text displayed above the carousel.
Number
Determines the alignment of the header text (1 for left, 2 for center, 3 for right).
Array
An array of slide objects, each with:
Object
Optional background image with properties:
String
URL of the background image.
String
Background color for the slide.
Object
Optional image with properties:
String
URL of the image.
String
Main header text for the slide.
String
Subheader text for the slide.
String
Secondary subheader text for the slide.
String
Additional text for the slide.
String
URL for the button link.
String
Text for the button.
Example Model
{
"id": "hero-carousel",
"cssClass": "hero-carousel",
"header": "Featured Highlights",
"alignment": 2,
"slides": [
{
"backgroundImage": {
"link": "https://example.com/image1.jpg"
},
"backgroundColor": "#f0f0f0",
"image": {
"link": "https://example.com/image1-thumbnail.jpg"
},
"header": "Welcome to Our Site",
"subHeader": "Explore the Latest Trends",
"subHeader2": "Discover more about our offerings",
"text": "Join us to experience the best of our products and services.",
"buttonLink": "https://example.com/signup",
"buttonText": "Get Started"
},
{
"backgroundImage": {
"link": "https://example.com/image2.jpg"
},
"backgroundColor": "#e0e0e0",
"image": {
"link": "https://example.com/image2-thumbnail.jpg"
},
"header": "Special Offers",
"subHeader": "Limited Time Only",
"subHeader2": "Don't miss out on exclusive deals",
"text": "Check out our special promotions and discounts available now.",
"buttonLink": "https://example.com/offers",
"buttonText": "View Offers"
}
]
}
Component Structure
1.
2.
3.
HTML Template
JavaScript
Explanation
data
and props
to manage the carousel's state and configuration.tns
) for carousel functionality, with customizable options for controls, speed, and autoplay.Usage
1.
Ensure that
herocarouseldefault
is registered in your Vue app.2.
Pass a configuration object to the component to define the carousel slides, header, and other settings.
3.
The component automatically initializes the carousel using Tiny Slider on mount.
4.
Apply custom styles using the
cssClass
property to match your design requirements.Modified at 2024-08-27 09:05:08