A versatile component for creating elements with animated gradient borders and backgrounds.
You can customize the BorderGradient component by:
background
prop to change the inner content area color.class
and wrapperClass
props.<style>
section.rounded-2xl
class in the template.Here's an example of a customized BorderGradient:
A mesmerizing blend of deep blues and vibrant yellows, reminiscent of Van Gogh's masterpiece.
Soft pastels blend together, creating a calming atmosphere that evokes the tranquility of a peaceful dawn.
The BorderGradient
component creates an element with an animated gradient border and background effect.
Prop | Type | Default | Description |
---|---|---|---|
background | String | 'black' | The background color of the inner content area. |
class | String | undefined | Additional CSS classes to apply to the inner content area. |
wrapperClass | String | undefined | Additional CSS classes to apply to the outer wrapper. |
The BorderGradient component uses the default slot for its content.
Slot | Description |
---|---|
default | Content to be displayed inside the gradient border. |
background
prop to ensure good contrast with your content.class
prop to style the inner content area without affecting the gradient.wrapperClass
prop for positioning or sizing the entire component.While this component adds visual appeal, ensure that it doesn't interfere with the readability or accessibility of the content it contains. High contrast between the background and text content is crucial for readability.
The BorderGradient component uses layered divs, absolute positioning, CSS animations, and scoped styles to achieve its effect. The gradient is created using a complex radial-gradient
with multiple color stops, creating a multi-color effect that animates smoothly.
Key features:
<div>
elements for gradient effectsFor the full implementation details, please refer to the source code of the component.