The Card component offers a dynamic and versatile way to showcase content, with a variety of customization options to fit any style or purpose.
About
The Card component is a versatile UI element used to present content in a structured and visually appealing way. It supports various customizations, allowing you to adjust its layout, images, and styling to fit different use cases. Whether you need to display text, images, or a combination of both, the Card component provides a flexible solution.
Example
Start by importing the Card component from the theui-svelte library:
<script>
import { Card } from "theui-svelte";
</script>
Here's a simple demonstration of how to use the Card
component. This example highlights how you can easily combine a title, images, and custom content to create a visually appealing card. You can further personalize it by tweaking the layout and styles using the available props.
Card Title
Explore our tools and resources designed to help you grow. Stay connected and enjoy the journey!
<script>
const imgData = {src: "https://placehold.co/800x400/6A00F5/white", alt: "A demo image"}
</script>
<Card title="Card Title" topImage={imgData}>
<p>Explore our tools and resources designed to help you grow. Stay connected and enjoy the journey!</p>
<div>
<Button>Submit</Button>
</div>
</Card>
Alternatively you can use related snippet for the card item like title and images.
<Card>
{#snippet topImage()}
<img class="block w-full rounded-t-md" src="..." alt="...">
{/snippet}
{#snippet title()}
<h4 class="text-xl font-semibold">Card Title</h4>
{/snippet}
<p>Explore our tools and resources designed to help you grow. Stay connected and enjoy the journey!</p>
<div>
<Button label="Submit" />
</div>
</Card>
Card Elements
There are some prefix elements in the Card
component. The example are showing below.
Card Title
You can use either title prop
or title snippet
to add card title.
Card Title
...<Card title="Card Title">
...
</Card>
You can use the title
snippet also:
<Card>
{#snippet title()}
<h4 class="text-xl font-semibold">Card Title</h4>
{/snippet}
</Card>
Card's Top Image
Use either the topImage prop
or topImage snippet
to add image at the top in the Card
component.
Card Title
This is card content..
<script>
const imgData = {src: "https://placehold.co/800x400/6A00F5/white", alt: "A demo image"}
<Card title="Card Title" topImage={imgData}>
...
</Card>
Card's Bottom Image
Use either the bottomImage prop
or bottomImage snippet
to add image at the top in the Card
component.
Card Title
This is card content..
<script>
const imgData = {src: "https://placehold.co/800x400/6A00F5/white", alt: "A demo image"}
</script>
<Card title="Card Title" bottomImage={imgData}>
...
</Card>
Or, use topImage
snippet:
<Card>
{#snippet title()}
<h4 class="text-xl font-semibold">Card Title</h4>
{/snippet}
{#snippet topImage()}
<img class="block w-full rounded-t-md" src="..." alt="...">
{/snippet}
<p>This is card content..</p>
</Card>
Card Content
Any element the Card
component will be the card content.
This is card content..
<Card>
<p>This is card content..</p>
</Card>
Horizontal Card
The Card
component supports a flexible layout option that allows you to switch between vertical and horizontal orientations, depending on your design needs. To adopt a horizontal layout for the Card
component, simply add the horizontal
attribute. When this attribute is present, the card's content will be arranged side by side, making it ideal for designs where a wide layout is preferred.
Card Title
This is card content..
<Card horizontal>
<p>This is card content..</p>
</Card>
Customization
The Card component is easy to customize, letting you style it to match your needs. You can change how any part of the card looks. Whether it's the content, title, shadow, or shape, you have full control.
You can either use snippets for custom components or utilize these props directly for more straightforward customization. Here are the key props available for customization:
- class: Apply custom styles to the card's container.
- contentClasses: Apply custom styles to the card's content.
- titleClasses: Style the title with your preferred classes.
- shadow: Adjust the card's shadow for a more or less prominent effect.
- rounded: Control the card's border-radius to achieve the desired shape.
Card Title
This is card content..
<Card
class="border-2 border-green-500 bg-green-100"
titleClasses="bg-green-500 p-2 rounded-md text-green-50"
contentClasses="text-green-500"
shadow="none"
rounded="xl"
title="Card Title"
>
<p>This is card content..</p>
</Card>
Configuration
Name | Type | Default | Description |
---|---|---|---|
title | Snippet | string | undefined | The title of the component, which can be a string or a Snippet. |
rounded | ROUNDED | "md" | Defines the border radius of the component. |
shadow | SHADOW | "md" | Specifies the shadow depth for the component. |
topImage | Snippet | {class?: string, src?: string, alt?: string, [key: string]: unknown} | undefined | An optional top image, which can be a Snippet or an object with image properties. |
bottomImage | Snippet | {class?: string, src?: string, alt?: string, [key: string]: unknown} | undefined | An optional bottom image, which can be a Snippet or an object with image properties. |
contentClasses | string | "" | CSS classes for styling the content area. |
titleClasses | string | "" | CSS classes for styling the title. |