Others-tootip文字提示

Posted zhq--blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Others-tootip文字提示相关的知识,希望对你有一定的参考价值。

<!--Tooltip 文字提示
常用于展示鼠标 hover 时的提示信息。
使用content属性来决定hover时的提示信息。由placement属性决定展示效果:placement属性值为:方向-对齐位置;四个方向:top、left、right、bottom;三种对齐位置:start, end,默认为空。如placement="left-end",则提示信息出现在目标元素的左侧,且提示信息的底部与目标元素的底部对齐。
Tooltip 组件提供了两个不同的主题:dark和light,通过设置effect属性来改变主题,默认为dark。-->
    <div class="box">
        <div class="top">
            <el-tooltip class="item" effect="dark" content="Top Left 提示文字" placement="top-start">
                <el-button>上左</el-button>
            </el-tooltip>
            <el-tooltip class="item" effect="dark" content="Top Center 提示文字" placement="top">
                <el-button>上边</el-button>
            </el-tooltip>
            <el-tooltip class="item" effect="dark" content="Top Right 提示文字" placement="top-end">
                <el-button>上右</el-button>
            </el-tooltip>
        </div>

    </div>
<!--展示多行文本或者是设置文本内容的格式
用具名 slot 分发content,替代tooltip中的content属性。-->
    <el-tooltip placement="top">
        <div slot="content">多行信息<br/>第二行信息</div>
        <el-button>Top center</el-button>
    </el-tooltip>
<!--transition 属性可以定制显隐的动画效果,默认为fade-in-linear。 如果需要关闭 tooltip 功能,disabled 属性可以满足这个需求,它接受一个Boolean,设置为true即可。-->
<el-tooltip :disabled="disabled" content="点击关闭 tooltip 功能" placement="bottom" effect="light">
    <el-button @click="disabled = !disabled">点击{{disabled ? ‘开启‘ : ‘关闭‘}} tooltip 功能</el-button>
</el-tooltip>

tooltip 内不支持 router-link 组件,请使用 vm.$router.push 代替。

tooltip 内不支持 disabled form 元素,参考MDN,请在 disabled form 元素外层添加一层包裹元素。

Attributes

参数说明类型可选值默认值
effect 默认提供的主题 String dark/light dark
content 显示的内容,也可以通过 slot#content 传入 DOM String
placement Tooltip 的出现位置 String top/top-start/top-end/bottom/bottom-start/bottom-end/left/left-start/left-end/right/right-start/right-end bottom
disabled Tooltip 是否可用 Boolean false
transition 定义渐变动画 String el-fade-in-linear

以上是关于Others-tootip文字提示的主要内容,如果未能解决你的问题,请参考以下文章

如何组合绑定片段而不将它们包装在 XML 文字中

markdown 打字稿...编码说明,提示,作弊,指南,代码片段和教程文章

注释的基本使用与文档注释的特殊功能

鼠标移到文字上出现图片提示的代码?

CSS代码片段

CSS代码片段