-
Get Started
-
Vue Components
- App
- Accordion
- Action Sheet / Actions
- Badge
- Block / Content Block
- Button
- Cards
- Checkbox
- Chips / Tags
- Contacts List
- Floating Action Button / FAB
- Gauge
- Grid / Layout Grid
- Icon
- Inputs / Form Inputs
- Link
- List View
- List Item
- List Button
- List Index
- Login Screen
- Messagebar
- Messages
- Navbar
- Page
- Panel / Side Panels
- Photo Browser
- Popover
- Popup
- Preloader
- Progressbar
- Radio
- Range Slider
- Searchbar
- Sheet Modal
- Smart Select
- Sortable
- Statusbar
- Stepper
- Subnavbar
- Swiper
- Swipeout
- Tabs
- Toggle
- Toolbar / Tabbar
- View
- Virtual List
Card Vue Component
Cards, along with List View, is a one more great way to contain and orginize your information. Cards contains unique related data, for example, a photo, text, and link all about a single subject. Cards are typically an entry point to more complex and detailed information.
Card Vue component represents Cards component.
Card Components
There are following components included:
f7-card
f7-card-header
f7-card-content
f7-card-footer
Card Properties
Prop | Type | Default | Description |
---|---|---|---|
<f7-card> properties | |||
title | string | Card header content | |
content | string | Card content | |
footer | string | Card footer content | |
padding | boolean | true | Adds additional inner padding on card content |
outline | boolean | false | Makes Card outline |
<f7-card-content> properties | |||
padding | boolean | true | Adds additional inner padding |
Examples
<f7-block-title>Simple Cards</f7-block-title>
<f7-card
content="This is a simple card with plain text, but cards can also contain their own header, footer, list view, image, or any other element."
></f7-card>
<f7-card
title="Card header"
content="Card with header and footer. Card headers are used to display card titles and footers for additional information or just for custom actions."
footer="Card footer"
></f7-card>
<f7-card
content="Another card. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse feugiat sem est, non tincidunt ligula volutpat sit amet. Mauris aliquet magna justo. "
></f7-card>
<f7-block-title>Outline Cards</f7-block-title>
<f7-card
outline
content="This is a simple card with plain text, but cards can also contain their own header, footer, list view, image, or any other element."
></f7-card>
<f7-card
outline
title="Card header"
content="Card with header and footer. Card headers are used to display card titles and footers for additional information or just for custom actions."
footer="Card footer"
></f7-card>
<f7-card
outline
content="Another card. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse feugiat sem est, non tincidunt ligula volutpat sit amet. Mauris aliquet magna justo. "
></f7-card>
<f7-block-title>Styled Cards</f7-block-title>
<f7-card class="demo-card-header-pic">
<f7-card-header
class="no-border"
valign="bottom"
style="background-image:url(http://lorempixel.com/1000/600/nature/3/)"
>Journey To Mountains</f7-card-header>
<f7-card-content>
<p class="date">Posted on January 21, 2015</p>
<p>Quisque eget vestibulum nulla. Quisque quis dui quis ex ultricies efficitur vitae non felis. Phasellus quis nibh hendrerit...</p>
</f7-card-content>
<f7-card-footer>
<f7-link>Like</f7-link>
<f7-link>Read more</f7-link>
</f7-card-footer>
</f7-card>
<f7-card class="demo-card-header-pic">
<f7-card-header
class="no-border"
valign="bottom"
style="background-image:url(http://lorempixel.com/1000/600/people/6/)"
>Journey To Mountains</f7-card-header>
<f7-card-content>
<p class="date">Posted on January 21, 2015</p>
<p>Quisque eget vestibulum nulla. Quisque quis dui quis ex ultricies efficitur vitae non felis. Phasellus quis nibh hendrerit...</p>
</f7-card-content>
<f7-card-footer>
<f7-link>Like</f7-link>
<f7-link>Read more</f7-link>
</f7-card-footer>
</f7-card>
<f7-block-title>Facebook Cards</f7-block-title>
<f7-card class="demo-facebook-card">
<f7-card-header class="no-border">
<div class="demo-facebook-avatar"><img src="http://lorempixel.com/68/68/people/1/" width="34" height="34"/></div>
<div class="demo-facebook-name">John Doe</div>
<div class="demo-facebook-date">Monday at 3:47 PM</div>
</f7-card-header>
<f7-card-content :padding="false">
<img src="http://lorempixel.com/1000/700/nature/8/" width="100%"/>
</f7-card-content>
<f7-card-footer class="no-border">
<f7-link>Like</f7-link>
<f7-link>Comment</f7-link>
<f7-link>Share</f7-link>
</f7-card-footer>
</f7-card>
<f7-card class="demo-facebook-card">
<f7-card-header class="no-border">
<div class="demo-facebook-avatar"><img src="http://lorempixel.com/68/68/people/1/" width="34" height="34"/></div>
<div class="demo-facebook-name">John Doe</div>
<div class="demo-facebook-date">Monday at 2:15 PM</div>
</f7-card-header>
<f7-card-content>
<p>What a nice photo i took yesterday!</p><img src="http://lorempixel.com/1000/700/nature/8/" width="100%"/>
<p class="likes">Likes: 112 Comments: 43</p>
</f7-card-content>
<f7-card-footer class="no-border">
<f7-link>Like</f7-link>
<f7-link>Comment</f7-link>
<f7-link>Share</f7-link>
</f7-card-footer>
</f7-card>
<f7-block-title>Cards With List View</f7-block-title>
<f7-card>
<f7-card-content :padding="false">
<f7-list>
<f7-list-item link="#">Link 1</f7-list-item>
<f7-list-item link="#">Link 2</f7-list-item>
<f7-list-item link="#">Link 3</f7-list-item>
<f7-list-item link="#">Link 4</f7-list-item>
<f7-list-item link="#">Link 5</f7-list-item>
</f7-list>
</f7-card-content>
</f7-card>
<f7-card title="New Reelases">
<f7-card-content :padding="false">
<f7-list medial-list>
<f7-list-item
title="Yellow Submarine"
subtitle="Beatles"
>
<img slot="media" src="http://lorempixel.com/88/88/fashion/4" width="44"/>
</f7-list-item>
<f7-list-item
title="Don't Stop Me Now"
subtitle="Queen"
>
<img slot="media" src="http://lorempixel.com/88/88/fashion/5" width="44"/>
</f7-list-item>
<f7-list-item
title="Billie Jean"
subtitle="Michael Jackson"
>
<img slot="media" src="http://lorempixel.com/88/88/fashion/6" width="44"/>
</f7-list-item>
</f7-list>
</f7-card-content>
<f7-card-footer>
<span>January 20, 2015</span>
<span>5 comments</span>
</f7-card-footer>
</f7-card>