element/examples/docs/zh-CN/tooltip.md

218 lines
7.1 KiB
Markdown
Raw Normal View History

2016-08-18 09:29:11 +00:00
<script>
export default {
data() {
return {
disabled: false
};
}
};
</script>
2016-11-06 07:37:35 +00:00
<style>
.demo-tooltip {
.el-tooltip + .el-tooltip {
margin-left: 15px;
}
.box {
width: 400px;
2016-11-06 07:37:35 +00:00
.top {
text-align: center;
}
2016-08-18 09:29:11 +00:00
2016-11-06 07:37:35 +00:00
.left {
float: left;
width: 60px;
}
2016-08-18 09:29:11 +00:00
2016-11-06 07:37:35 +00:00
.right {
float: right;
width: 60px;
}
2016-08-18 09:29:11 +00:00
2016-11-06 07:37:35 +00:00
.bottom {
clear: both;
text-align: center;
}
2016-08-18 09:29:11 +00:00
2016-11-06 07:37:35 +00:00
.item {
margin: 4px;
}
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
.left .el-tooltip__popper,
.right .el-tooltip__popper {
padding: 8px 10px;
}
.el-tooltip {
margin-left: 0;
}
2016-07-27 06:15:02 +00:00
}
2016-11-06 07:37:35 +00:00
}
</style>
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
## Tooltip 文字提示
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
常用于展示鼠标 hover 时的提示信息。
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
### 基础用法
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
在这里我们提供 9 种不同方向的展示方式,可以通过以下完整示例来理解,选择你要的效果。
2016-10-22 09:48:44 +00:00
2016-11-06 07:37:35 +00:00
:::demo 使用`content`属性来决定`hover`时的提示信息。由`placement`属性决定展示效果:`placement`属性值为:`方向-对齐位置`;四个方向:`top`、`left`、`right`、`bottom`;三种对齐位置:`start`, `end`,默认为空。如`placement="left-end"`,则提示信息出现在目标元素的左侧,且提示信息的底部与目标元素的底部对齐。
2016-07-27 06:15:02 +00:00
2016-11-06 07:37:35 +00:00
```html
2016-07-27 06:15:02 +00:00
<div class="box">
<div class="top">
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Top Left 提示文字" placement="top-start">
2016-07-27 06:15:02 +00:00
<el-button>上左</el-button>
</el-tooltip>
2016-08-05 09:02:01 +00:00
<el-tooltip class="item" effect="dark" content="Top Center 提示文字" placement="top">
2016-07-27 06:15:02 +00:00
<el-button>上边</el-button>
</el-tooltip>
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Top Right 提示文字" placement="top-end">
2016-07-27 06:15:02 +00:00
<el-button>上右</el-button>
</el-tooltip>
</div>
<div class="left">
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Left Top 提示文字" placement="left-start">
2016-07-27 06:15:02 +00:00
<el-button>左上</el-button>
</el-tooltip>
2016-08-05 09:02:01 +00:00
<el-tooltip class="item" effect="dark" content="Left Center 提示文字" placement="left">
2016-07-27 06:15:02 +00:00
<el-button>左边</el-button>
</el-tooltip>
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Left Bottom 提示文字" placement="left-end">
2016-07-27 06:15:02 +00:00
<el-button>左下</el-button>
</el-tooltip>
</div>
<div class="right">
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Right Top 提示文字" placement="right-start">
2016-07-27 06:15:02 +00:00
<el-button>右上</el-button>
</el-tooltip>
2016-08-05 09:02:01 +00:00
<el-tooltip class="item" effect="dark" content="Right Center 提示文字" placement="right">
2016-07-27 06:15:02 +00:00
<el-button>右边</el-button>
</el-tooltip>
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Right Bottom 提示文字" placement="right-end">
2016-07-27 06:15:02 +00:00
<el-button>右下</el-button>
</el-tooltip>
</div>
<div class="bottom">
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Bottom Left 提示文字" placement="bottom-start">
2016-07-27 06:15:02 +00:00
<el-button>下左</el-button>
</el-tooltip>
2016-08-05 09:02:01 +00:00
<el-tooltip class="item" effect="dark" content="Bottom Center 提示文字" placement="bottom">
2016-07-27 06:15:02 +00:00
<el-button>下边</el-button>
</el-tooltip>
2016-09-13 03:55:34 +00:00
<el-tooltip class="item" effect="dark" content="Bottom Right 提示文字" placement="bottom-end">
2016-07-27 06:15:02 +00:00
<el-button>下右</el-button>
</el-tooltip>
</div>
</div>
<style>
.box {
width: 400px;
.top {
text-align: center;
}
.left {
float: left;
width: 60px;
}
.right {
float: right;
width: 60px;
}
.bottom {
clear: both;
text-align: center;
}
.item {
margin: 4px;
}
.left .el-tooltip__popper,
.right .el-tooltip__popper {
padding: 8px 10px;
}
}
</style>
```
:::
2016-07-27 06:15:02 +00:00
### 主题
2016-07-27 06:15:02 +00:00
Tooltip 组件提供了两个不同的主题:`dark`和`light`。
2016-07-27 06:15:02 +00:00
:::demo 通过设置`effect`属性来改变主题,默认为`dark`。
2016-08-18 09:29:11 +00:00
```html
<el-tooltip content="Top center" placement="top">
<el-button>Dark</el-button>
</el-tooltip>
<el-tooltip content="Bottom center" placement="bottom" effect="light">
<el-button>Light</el-button>
</el-tooltip>
```
:::
2016-08-18 09:29:11 +00:00
### 更多 Content
2016-08-18 09:29:11 +00:00
展示多行文本或者是设置文本内容的格式
2016-08-18 09:29:11 +00:00
:::demo 用具名 slot 分发`content`,替代`tooltip`中的`content`属性。
2016-08-18 09:29:11 +00:00
```html
<el-tooltip placement="top">
<div slot="content">多行信息<br/>第二行信息</div>
<el-button>Top center</el-button>
</el-tooltip>
```
:::
2016-08-18 09:29:11 +00:00
### 高级扩展
2016-08-18 09:29:11 +00:00
除了这些基本设置外,还有一些属性可以让使用者更好的定制自己的效果:
`transition` 属性可以定制显隐的动画效果,默认为`fade-in-linear`。
如果需要关闭 `tooltip` 功能,`disabled` 属性可以满足这个需求,它接受一个`Boolean`,设置为`true`即可。
2016-08-18 09:29:11 +00:00
2016-08-30 11:06:15 +00:00
事实上,这是基于 [Vue-popper](https://github.com/element-component/vue-popper) 的扩展,你可以自定义任意 Vue-popper 中允许定义的字段。
当然 Tooltip 组件实际上十分强大文末的API文档会做一一说明。
2016-08-18 09:29:11 +00:00
:::demo
2016-08-18 09:29:11 +00:00
```html
2016-08-19 06:45:08 +00:00
<template>
2016-08-30 11:06:15 +00:00
<el-tooltip :disabled="disabled" content="点击关闭 tooltip 功能" placement="bottom" effect="light">
<el-button @click="disabled = !disabled">点击{{disabled ? '开启' : '关闭'}} tooltip 功能</el-button>
2016-08-19 06:45:08 +00:00
</el-tooltip>
</template>
2016-08-18 09:29:11 +00:00
```
:::
2016-08-18 09:29:11 +00:00
:::tip
tooltip 内不支持 `router-link` 组件,请使用 `vm.$router.push` 代替。
tooltip 内不支持 disabled form 元素,参考[MDN](https://developer.mozilla.org/en-US/docs/Web/Events/mouseenter),请在 disabled form 元素外层添加一层包裹元素。
:::
### Attributes
2016-07-27 06:15:02 +00:00
| 参数 | 说明 | 类型 | 可选值 | 默认值 |
|--------------------|----------------------------------------------------------|-------------------|-------------|--------|
2016-11-13 14:00:55 +00:00
| effect | 默认提供的主题 | String | dark/light | dark |
2016-09-02 05:56:47 +00:00
| content | 显示的内容,也可以通过 `slot#content` 传入 DOM | String | — | — |
2016-11-13 14:00:55 +00:00
| placement | Tooltip 的出现位置 | String | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom |
| value(v-model) | 状态是否可见 | Boolean | — | false |
2016-09-02 05:56:47 +00:00
| disabled | Tooltip 是否可用 | Boolean | — | false |
| offset | 出现位置的偏移量 | Number | — | 0 |
| transition | 定义渐变动画 | String | — | el-fade-in-linear |
2016-09-02 05:56:47 +00:00
| visible-arrow | 是否显示 Tooltip 箭头,更多参数可见[Vue-popper](https://github.com/element-component/vue-popper) | Boolean | — | true |
2017-04-06 10:45:40 +00:00
| popper-options | [popper.js](https://popper.js.org/documentation.html) 的参数 | Object | 参考 [popper.js](https://popper.js.org/documentation.html) 文档 | { boundariesElement: 'body', gpuAcceleration: false } |
| open-delay | 延迟出现,单位毫秒 | Number | — | 0 |
2016-11-13 14:00:55 +00:00
| manual | 手动控制模式,设置为 true 后mouseenter 和 mouseleave 事件将不会生效 | Boolean | — | false |
2016-12-29 12:53:33 +00:00
| popper-class | 为 Tooltip 的 popper 添加类名 | String | — | — |
2017-04-19 10:32:14 +00:00
| enterable | 鼠标是否可进入到 tooltip 中 | Boolean | — | true |