mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
84321952e0
* style(slider): slider button style change slider button add box-sizing: border-box and change the default size to make sure the style is the same of before. * style(slider): remove outline * fix(docs): replace error v-slot/slot to correct Replace all `v-slot` to `#default`, `v-slot:xxx` to `#xxx`, `slot="xxx"` to `#xxx`. fix #704 * docs: v-slot can not bind on div * fix: fix v-slot
172 lines
3.5 KiB
Markdown
172 lines
3.5 KiB
Markdown
## Card
|
|
cardコンテナに情報を統合する
|
|
|
|
### 基本的な使い方
|
|
|
|
cardはタイトル、内容、操作を含む。
|
|
|
|
:::demo cardは `header` と `body` からなる。ヘッダはオプションであり、その内容の分布はスロットの名前に依存します。
|
|
```html
|
|
<el-card class="box-card">
|
|
<template #header>
|
|
<div class="clearfix">
|
|
<span>Card name</span>
|
|
<el-button style="float: right; padding: 3px 0" type="text">Operation button</el-button>
|
|
</div>
|
|
</template>
|
|
<div v-for="o in 4" :key="o" class="text item">
|
|
{{'List item ' + o }}
|
|
</div>
|
|
</el-card>
|
|
|
|
<style>
|
|
.text {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.item {
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.clearfix:before,
|
|
.clearfix:after {
|
|
display: table;
|
|
content: "";
|
|
}
|
|
.clearfix:after {
|
|
clear: both
|
|
}
|
|
|
|
.box-card {
|
|
width: 480px;
|
|
}
|
|
</style>
|
|
```
|
|
:::
|
|
|
|
### シンプルなcard
|
|
|
|
ヘッダー部分は省略可能です。
|
|
|
|
:::demo
|
|
```html
|
|
<el-card class="box-card">
|
|
<div v-for="o in 4" :key="o" class="text item">
|
|
{{'List item ' + o }}
|
|
</div>
|
|
</el-card>
|
|
|
|
<style>
|
|
.text {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.item {
|
|
padding: 18px 0;
|
|
}
|
|
|
|
.box-card {
|
|
width: 480px;
|
|
}
|
|
</style>
|
|
```
|
|
:::
|
|
|
|
### 画像付き
|
|
|
|
設定を追加することで、よりリッチなコンテンツを表示することができます。
|
|
|
|
:::demo `body-style` 属性は、カスタム `body` の CSS スタイルを定義します。この例ではレイアウトにも `el-col` を用いています。
|
|
```html
|
|
<el-row>
|
|
<el-col :span="8" v-for="(o, index) in 2" :key="o" :offset="index > 0 ? 2 : 0">
|
|
<el-card :body-style="{ padding: '0px' }">
|
|
<img src="https://shadow.elemecdn.com/app/element/hamburger.9cf7b091-55e9-11e9-a976-7f4d0b07eef6.png" class="image">
|
|
<div style="padding: 14px;">
|
|
<span>Yummy hamburger</span>
|
|
<div class="bottom clearfix">
|
|
<time class="time">{{ currentDate }}</time>
|
|
<el-button type="text" class="button">Operating</el-button>
|
|
</div>
|
|
</div>
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<style>
|
|
.time {
|
|
font-size: 13px;
|
|
color: #999;
|
|
}
|
|
|
|
.bottom {
|
|
margin-top: 13px;
|
|
line-height: 12px;
|
|
}
|
|
|
|
.button {
|
|
padding: 0;
|
|
float: right;
|
|
}
|
|
|
|
.image {
|
|
width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
.clearfix:before,
|
|
.clearfix:after {
|
|
display: table;
|
|
content: "";
|
|
}
|
|
|
|
.clearfix:after {
|
|
clear: both
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
currentDate: new Date()
|
|
};
|
|
}
|
|
}
|
|
</script>
|
|
```
|
|
:::
|
|
|
|
### シャドウ
|
|
|
|
cardのシャドウを表示するタイミングを定義することができます。
|
|
|
|
:::demo `shadow` 属性は、cardの影をいつ表示するかを決定します。`always`, `hover`, `never` のいずれかです。
|
|
```html
|
|
<el-row :gutter="12">
|
|
<el-col :span="8">
|
|
<el-card shadow="always">
|
|
Always
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-card shadow="hover">
|
|
Hover
|
|
</el-card>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-card shadow="never">
|
|
Never
|
|
</el-card>
|
|
</el-col>
|
|
</el-row>
|
|
```
|
|
:::
|
|
|
|
### Attributes
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
|---------- |-------- |---------- |------------- |-------- |
|
|
| header | cardのタイトルを指定します。`slot#header` で渡された DOM も受け付ける。 | string| — | — |
|
|
| body-style | ボディのCSSスタイル | object| — | { padding: '20px' } |
|
|
| shadow | cardの影を表示するタイミング | string | always / hover / never | always |
|