2020-11-04 10:30:14 +08:00
|
|
|
## ツールチップ
|
|
|
|
|
|
|
|
マウスホバーのプロンプト情報を表示します。
|
|
|
|
|
|
|
|
### 基本的な使い方
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
ツールチップの配置は 9 箇所です。
|
|
|
|
|
|
|
|
:::demo ホバー時の表示内容を設定するには、属性 `content` を用いる。属性 `placement` はツールチップの位置を決める。値は `[orientation]-[alignment]` で、方向は `top`, `left`, `right`, `bottom` の 4 つ、アライメントは `start`, `end`, `null` の 3 つで、デフォルトのアライメントは null です。例えば、`placement="left-end"` を例にとると、ツールチップはホバリングしている要素の左側に表示され、ツールチップの下端は要素の下端に合わせて配置されます。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
```html
|
|
|
|
<div class="box">
|
|
|
|
<div class="top">
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Top Left prompts info"
|
|
|
|
placement="top-start"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>top-start</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Top Center prompts info"
|
|
|
|
placement="top"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>top</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Top Right prompts info"
|
|
|
|
placement="top-end"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>top-end</el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</div>
|
|
|
|
<div class="left">
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Left Top prompts info"
|
|
|
|
placement="left-start"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>left-start</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Left Center prompts info"
|
|
|
|
placement="left"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>left</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Left Bottom prompts info"
|
|
|
|
placement="left-end"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>left-end</el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="right">
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Right Top prompts info"
|
|
|
|
placement="right-start"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>right-start</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Right Center prompts info"
|
|
|
|
placement="right"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>right</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Right Bottom prompts info"
|
|
|
|
placement="right-end"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>right-end</el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</div>
|
|
|
|
<div class="bottom">
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Bottom Left prompts info"
|
|
|
|
placement="bottom-start"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>bottom-start</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Bottom Center prompts info"
|
|
|
|
placement="bottom"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>bottom</el-button>
|
|
|
|
</el-tooltip>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
class="item"
|
|
|
|
effect="dark"
|
|
|
|
content="Bottom Right prompts info"
|
|
|
|
placement="bottom-end"
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>bottom-end</el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.box {
|
|
|
|
width: 400px;
|
|
|
|
|
|
|
|
.top {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
float: left;
|
|
|
|
width: 110px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
float: right;
|
|
|
|
width: 110px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottom {
|
|
|
|
clear: both;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.item {
|
|
|
|
margin: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left .el-tooltip__popper,
|
|
|
|
.right .el-tooltip__popper {
|
|
|
|
padding: 8px 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-button {
|
|
|
|
width: 110px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
```
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
:::
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
### テーマ
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
ツールチップには、`dark` と `light` の 2 つのテーマがあります。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
:::demo テーマを変更するには `effect` を設定します。デフォルト値は`dark`です。
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08: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>
|
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### コンテンツを追加します。
|
|
|
|
|
|
|
|
複数行のテキストを表示し、そのフォーマットを設定します。
|
|
|
|
|
|
|
|
:::demo `el-tooltip` の `content` という名前のスロットを追加して `el-tooltip` の `content` 属性をオーバーライドします。
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
```html
|
|
|
|
<el-tooltip placement="top">
|
2021-09-04 19:29:28 +08:00
|
|
|
<template #content> multiple lines<br />second line </template>
|
2020-11-04 10:30:14 +08:00
|
|
|
<el-button>Top center</el-button>
|
|
|
|
</el-tooltip>
|
|
|
|
```
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### 高度な使用法
|
|
|
|
|
|
|
|
基本的な使い方に加えて、自分でカスタマイズできる属性がいくつかあります。:
|
|
|
|
|
|
|
|
`transition` 属性はツールチップの表示・非表示のアニメーションをカスタマイズすることができ、デフォルト値は el-fade-in-linear です。
|
|
|
|
|
|
|
|
デフォルト値は el-faade-in-linear です。 `disabled` 属性は `tooltip` を無効にします。`true`に設定すればよいだけです。
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
実際、ツールチップは[Vue-popper](https://github.com/element-component/vue-popper)をベースにした拡張機能なので、Vue-popper で許可されている属性なら何でも使えます。
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
:::demo
|
2021-09-04 19:29:28 +08:00
|
|
|
|
2020-11-04 10:30:14 +08:00
|
|
|
```html
|
|
|
|
<template>
|
2021-09-04 19:29:28 +08:00
|
|
|
<el-tooltip
|
|
|
|
:disabled="disabled"
|
|
|
|
content="click to close tooltip function"
|
|
|
|
placement="bottom"
|
|
|
|
effect="light"
|
|
|
|
>
|
|
|
|
<el-button @click="disabled = !disabled"
|
|
|
|
>click to {{disabled ? 'active' : 'close'}} tooltip function</el-button
|
|
|
|
>
|
2020-11-04 10:30:14 +08:00
|
|
|
</el-tooltip>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2021-09-04 19:29:28 +08:00
|
|
|
disabled: false,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
2020-11-04 10:30:14 +08:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
.slide-fade-enter-active {
|
2021-09-04 19:29:28 +08:00
|
|
|
transition: all 0.3s ease;
|
2020-11-04 10:30:14 +08:00
|
|
|
}
|
|
|
|
.slide-fade-leave-active {
|
2021-09-04 19:29:28 +08:00
|
|
|
transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
|
2020-11-04 10:30:14 +08:00
|
|
|
}
|
2021-09-04 19:29:28 +08:00
|
|
|
.slide-fade-enter,
|
|
|
|
.expand-fade-leave-active {
|
2020-11-04 10:30:14 +08:00
|
|
|
margin-left: 20px;
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
```
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
:::
|
2020-11-04 10:30:14 +08:00
|
|
|
|
|
|
|
:::tip
|
|
|
|
ツールチップでは `router-link` コンポーネントはサポートされていないので、`vm.$router.push` を使用してください。
|
|
|
|
|
2021-09-04 19:29:28 +08:00
|
|
|
無効化されたフォーム要素は、Tooltip ではサポートされていません。詳細は[Mdn](https://developer.mozilla.org/en-US/docs/Web/Events/mouseenter)を参照してください。Tooltip が動作するためには、無効化されたフォーム要素をコンテナ要素で包む必要があります。
|
2020-11-04 10:30:14 +08:00
|
|
|
:::
|
|
|
|
|
|
|
|
### 属性
|
2021-09-04 19:29:28 +08:00
|
|
|
|
|
|
|
| Attribute | Description | Type | Accepted Values | Default |
|
|
|
|
| --------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- | ------- | --------------------------------------------------------------------------------------------------------- | ------------------------------------------------------- |
|
|
|
|
| append-to-body | dialog 自身をボディに追加するかどうかを指定します。入れ子になった dialog は、この属性を `true` に設定しなければなりません。 | boolean | — | true |
|
|
|
|
| effect | ツールチップのテーマ | string | dark/light | dark |
|
|
|
|
| content | コンテンツを表示、`slot#content` で上書きすることができます。 | String | — | — |
|
|
|
|
| placement | ツールチップの位置 | string | top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end | bottom |
|
|
|
|
| model-value / v-model | ツールチップの可視性 | boolean | — | false |
|
|
|
|
| disabled | ツールチップが無効になっているかどうか | boolean | — | false |
|
|
|
|
| offset | ツールチップのオフセット | number | — | 0 |
|
|
|
|
| transition | アニメーション名 | string | — | el-fade-in-linear |
|
|
|
|
| visible-arrow | 矢印が表示されているかどうかを指定します。詳しくは、[Vue-popper](https://github.com/element-component/vue-popper)のページを参照してください。 | boolean | — | true |
|
|
|
|
| popper-options | [popper.js](https://popper.js.org/documentation.html) parameters | Object | refer to [popper.js](https://popper.js.org/documentation.html) doc | `{ boundariesElement: 'body', gpuAcceleration: false }` |
|
|
|
|
| show-after | ミリ秒単位の出現の遅延 | number | — | 0 |
|
|
|
|
| hide-after | ミリ秒単位の消えるの遅延 | number | — | 0 |
|
|
|
|
| auto-close | ツールチップを非表示にするタイムアウト(ミリ秒単位) | number | — | 0 |
|
|
|
|
| manual | ツールチップを手動で制御するかどうかを指定します。`true` に設定すると `mouseenter` と `mouseleave` は効果を持ちません。 | boolean | — | false |
|
|
|
|
| popper-class | ツールチップのポッパーのカスタムクラス名 | string | — | — |
|
|
|
|
| enterable | マウスがツールチップに入るかどうか | Boolean | — | true |
|
|
|
|
| tabindex | [tabindex](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/tabindex) のツールチップ | number | — | 0 |
|