Card React 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 React component represents Cards component.
Card Components
There are following components included:
**Card**
/**F7Card**
**CardHeader**
/**F7CardHeader**
**CardContent**
/**F7CardContent**
**CardFooter**
/**F7CardFooter**
Card Properties
Prop | Type | Default | Description |
---|---|---|---|
<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 |
noShadow | boolean | false | Disables card shadow |
noBorder | boolean | false | Disables card border (for outline cards) |
expandable | boolean | false | Enables expandable card |
expandableAnimateWidth | boolean | false | Enables card content width also animatable and responsive, but can affect performance |
expandableOpened | boolean | false | Boolean property indicating whether the expandable card opened or not |
animate | boolean | true | Specifies to open expandable card with animation or not |
hideNavbarOnOpen | boolean | Will hide Navbar on expandable card open. By default inherits same app card parameter. | |
hideToolbarOnOpen | boolean | Will hide Toolbar on expandable card open. By default inherits same app card parameter. | |
swipeToClose | boolean | Allows to close expandable card with swipe. By default inherits same app card parameter. | |
backdrop | boolean | Enables expandable card backdrop layer. By default inherits same app card parameter. | |
backdropEl | string | Allows to specify custom expandable card backdrop element. This should be a CSS selector of backdrop element, e.g. .card-backdrop.custom-backdrop | |
closeByBackdropClick | boolean | When enabled, expandable card will be closed on its backdrop click. By default inherits same app card parameter. | |
<f7-card-content> properties | |||
padding | boolean | true | Adds additional inner padding |
<CardContent> properties | |||
padding | boolean | true | Adds additional inner padding |
Card Events
Event | Description |
---|---|
<Card> events | |
cardBeforeOpen | Event will be triggered right before expandable card starts its opening animation. event.detail.prevent contains function that will prevent card from opening when called |
cardOpen | Event will be triggered when expandable card starts its opening animation |
cardOpened | Event will be triggered after expandable card completes its opening animation |
cardClose | Event will be triggered when expandable card starts its closing animation |
cardClosed | Event will be triggered after expandable card completes its closing animation |
Examples
<BlockTitle>Simple Cards</BlockTitle>
<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."
></Card>
<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"
></Card>
<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. "
></Card>
<BlockTitle>Outline Cards</BlockTitle>
<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."
></Card>
<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"
></Card>
<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. "
></Card>
<BlockTitle>Styled Cards</BlockTitle>
<Card className="demo-card-header-pic">
<CardHeader
className="no-border"
valign="bottom"
style={{ backgroundImage: 'url(https://cdn.framework7.io/placeholder/nature-1000x600-3.jpg)' }}
>Journey To Mountains</CardHeader>
<CardContent>
<p className="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>
</CardContent>
<CardFooter>
<Link>Like</Link>
<Link>Read more</Link>
</CardFooter>
</Card>
<Card className="demo-card-header-pic">
<CardHeader
className="no-border"
valign="bottom"
style={{ backgroundImage: 'url(https://cdn.framework7.io/placeholder/people-1000x600-6.jpg)' }}
>Journey To Mountains</CardHeader>
<CardContent>
<p className="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>
</CardContent>
<CardFooter>
<Link>Like</Link>
<Link>Read more</Link>
</CardFooter>
</Card>
<BlockTitle>Facebook Cards</BlockTitle>
<Card className="demo-facebook-card">
<CardHeader className="no-border">
<div className="demo-facebook-avatar"><img src="https://cdn.framework7.io/placeholder/people-68x68-1.jpg" width="34" height="34"/></div>
<div className="demo-facebook-name">John Doe</div>
<div className="demo-facebook-date">Monday at 3:47 PM</div>
</CardHeader>
<CardContent padding={false}>
<img src="https://cdn.framework7.io/placeholder/nature-1000x700-8.jpg" width="100%"/>
</CardContent>
<CardFooter className="no-border">
<Link>Like</Link>
<Link>Comment</Link>
<Link>Share</Link>
</CardFooter>
</Card>
<Card className="demo-facebook-card">
<CardHeader className="no-border">
<div className="demo-facebook-avatar"><img src="https://cdn.framework7.io/placeholder/people-68x68-1.jpg" width="34" height="34"/></div>
<div className="demo-facebook-name">John Doe</div>
<div className="demo-facebook-date">Monday at 2:15 PM</div>
</CardHeader>
<CardContent>
<p>What a nice photo i took yesterday!</p><img src="https://cdn.framework7.io/placeholder/nature-1000x700-8.jpg" width="100%"/>
<p className="likes">Likes: 112 Comments: 43</p>
</CardContent>
<CardFooter className="no-border">
<Link>Like</Link>
<Link>Comment</Link>
<Link>Share</Link>
</CardFooter>
</Card>
<BlockTitle>Cards With List View</BlockTitle>
<Card>
<CardContent padding={false}>
<List>
<ListItem link="#">Link 1</ListItem>
<ListItem link="#">Link 2</ListItem>
<ListItem link="#">Link 3</ListItem>
<ListItem link="#">Link 4</ListItem>
<ListItem link="#">Link 5</ListItem>
</List>
</CardContent>
</Card>
<Card title="New Releases:">
<CardContent padding={false}>
<List medial-list>
<ListItem
title="Yellow Submarine"
subtitle="Beatles"
>
<img slot="media" src="https://cdn.framework7.io/placeholder/fashion-88x88-4.jpg" width="44"/>
</ListItem>
<ListItem
title="Don't Stop Me Now"
subtitle="Queen"
>
<img slot="media" src="https://cdn.framework7.io/placeholder/fashion-88x88-5.jpg" width="44"/>
</ListItem>
<ListItem
title="Billie Jean"
subtitle="Michael Jackson"
>
<img slot="media" src="https://cdn.framework7.io/placeholder/fashion-88x88-6.jpg" width="44"/>
</ListItem>
</List>
</CardContent>
<CardFooter>
<span>January 20, 2015</span>
<span>5 comments</span>
</CardFooter>
</Card>
<BlockTitle>Expandable Cards</BlockTitle>
<Card expandable>
<CardContent padding={false}>
<div className="bg-color-red" style={{height: '300px'}}>
<CardHeader textColor="white" className="display-block">
Framework7
<br />
<small style={{opacity: 0.7}}>Build Mobile Apps</small>
</CardHeader>
<Link cardClose color="white" className="card-opened-fade-in" style={{position: 'absolute', right: '15px', top: '15px'}} iconF7="close_round_fill" />
</div>
<div className="card-content-padding">
<p>Framework7 - is a free and open source HTML mobile framework to develop hybrid mobile apps or web apps with iOS or Android (Material) native look and feel...</p>
</div>
</CardContent>
</Card>
<Card expandable>
<CardContent padding={false}>
<div className="bg-color-yellow" style={{height: '300px'}}>
<CardHeader textColor="black" className="display-block">
Framework7
<br/>
<small style={{opacity: 0.7}}>Build Mobile Apps</small>
</CardHeader>
<Link cardClose color="black" className="card-opened-fade-in" style={{position: 'absolute', right: '15px', top: '15px'}} iconF7="close_round_fill" />
</div>
<div className="card-content-padding">
<p>Framework7 - is a free and open source HTML mobile framework to develop hybrid mobile apps or web apps with iOS or Android (Material) native look and feel...</p>
</div>
</CardContent>
</Card>
当前内容版权归 Framework7 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 Framework7 .