前言
本文主要Alert 组件的大致框架, 提供少量可配置选项。 旨在大致提供思路
tooltip
常用于展示鼠标 hover 时的提示信息。
模板结构
<template> <div style="position:relative;"> <span ref="trigger"> <slot> </slot> </span> <div class="tooltip" v-bind:class="{ 'top': placement === 'top', 'left': placement === 'left', 'right': placement === 'right', 'bottom': placement === 'bottom', 'disable': type === 'disable', 'delete': type === 'delete', 'visible': show === true }" ref="popover" role="tooltip"> <div class="tooltip-arrow"></div> <div class="tooltip-inner"> <slot name="content" v-html="content"></slot> </div> </div> </div> </template>
大致结构DOM结构 一个div 包含 箭头 及 气泡内容。
v-bind中可选tooltip位置,是否禁用,及显示隐藏
slot 差值供自定义 默认接收content内容
script
import EventListener from '../utils/EventListener.js'; export default { props: { // 需要监听的事件 trigger: { type: String, default: 'click' }, effect: { type: String, default: 'fadein' }, title: { type: String }, // toolTip消息提示 content: { type: String }, header: { type: Boolean, default: true }, placement: { type: String } }, data() { return { // 通过计算所得 气泡位置 position: { top: 0, left: 0 }, show: true }; }, watch: { show: function(val) { if (val) { const popover = this.$refs.popover; const triger = this.$refs.trigger.children[0]; // 通过placement计算出位子 switch (this.placement) { case 'top' : this.position.left = triger.offsetLeft - popover.offsetWidth / 2 + triger.offsetWidth / 2; this.position.top = triger.offsetTop - popover.offsetHeight; break; case 'left': this.position.left = triger.offsetLeft - popover.offsetWidth; this.position.top = triger.offsetTop + triger.offsetHeight / 2 - popover.offsetHeight / 2; break; case 'right': this.position.left = triger.offsetLeft + triger.offsetWidth; this.position.top = triger.offsetTop + triger.offsetHeight / 2 - popover.offsetHeight / 2; break; case 'bottom': this.position.left = triger.offsetLeft - popover.offsetWidth / 2 + triger.offsetWidth / 2; this.position.top = triger.offsetTop + triger.offsetHeight; break; default: console.log('Wrong placement prop'); } popover.style.top = this.position.top + 'px'; popover.style.left = this.position.left + 'px'; } } }, methods: { toggle() { this.show = !this.show; } }, mounted() { if (!this.$refs.popover) return console.error("Couldn't find popover ref in your component that uses popoverMixin."); // 获取监听对象 const triger = this.$refs.trigger.children[0]; // 根据trigger监听特定事件 if (this.trigger === 'hover') { this._mouseenterEvent = EventListener.listen(triger, 'mouseenter', () => { this.show = true; }); this._mouseleaveEvent = EventListener.listen(triger, 'mouseleave', () => { this.show = false; }); } else if (this.trigger === 'focus') { this._focusEvent = EventListener.listen(triger, 'focus', () => { this.show = true; }); this._blurEvent = EventListener.listen(triger, 'blur', () => { this.show = false; }); } else { this._clickEvent = EventListener.listen(triger, 'click', this.toggle); } this.show = !this.show; }, // 在组件销毁前移除监听,释放内存 beforeDestroy() { if (this._blurEvent) { this._blurEvent.remove(); this._focusEvent.remove(); } if (this._mouseenterEvent) { this._mouseenterEvent.remove(); this._mouseleaveEvent.remove(); } if (this._clickEvent) this._clickEvent.remove(); } };
// EventListener.js const EventListener = { /** * Listen to DOM events during the bubble phase. * * @param {DOMEventTarget} target DOM element to register listener on. * @param {string} eventType Event type, e.g. 'click' or 'mouseover'. * @param {function} callback Callback function. * @return {object} Object with a `remove` method. */ listen(target, eventType, callback) { if (target.addEventListener) { target.addEventListener(eventType, callback, false); return { remove() { target.removeEventListener(eventType, callback, false); } }; } else if (target.attachEvent) { target.attachEvent('on' + eventType, callback); return { remove() { target.detachEvent('on' + eventType, callback); } }; } } }; export default EventListener;
封装的事件监听
使用
使用content属性来决定hover时的提示信息。由placement属性决定展示效果:placement属性值为:方向-对齐位置;四个方向:top、left、right、bottom。trigger属性用于设置触发tooltip的方式,默认为hover。
<d-tooltip content="我是tooltip"> <d-button type="text">鼠标移动到我上面试试</d-button> </d-tooltip> <d-tooltip content="我是tooltip" trigger="click"> <d-button type="text">点我试试</d-button> </d-tooltip>
content内容分发
设置一个名为content的slot。
<d-tooltip> <d-button type="text">鼠标移动到我上面试试</d-button> <p slot="content" class="tooltip-content">我是内容分发的conent。</p> </d-tooltip>
Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 |
---|---|---|---|---|
content | 显示的内容,也可以通过 slot#content 传入 DOM | String | — | — |
placement | Tooltip 的出现位置 | String | top/right/bottom/left | top |
trigger | tooltip触发方式 | String | — | hover |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。
本文向大家介绍开发Vue树形组件的示例代码,包括了开发Vue树形组件的示例代码的使用技巧和注意事项,需要的朋友参考一下 本文介绍了Vue树形组件的示例代码,分享给大家,具体如下: 使用SemanticUI和vue做一个menubar组件,实现方法大概是这样的: 使用时,假如父组件app使用到了menubar组件,那么data中需要定义一下items数据,例 : 里面的click事件是定义了,当在工
本文向大家介绍vue的一个分页组件的示例代码,包括了vue的一个分页组件的示例代码的使用技巧和注意事项,需要的朋友参考一下 分页组件在项目中经常要用到之前一直都是在网上找些jq的控件来用(逃..),最近几个项目用上vue了项目又刚好需要一个分页的功能。具体如下: 文件page.vue为一个pc端的分页组件,基础的分页功能都有,基本的思路是,页面是用数据来展示的,那就直接操作相关数据来改变视图 Ge
本文向大家介绍vue的全局提示框组件实例代码,包括了vue的全局提示框组件实例代码的使用技巧和注意事项,需要的朋友参考一下 这篇文章给大家介绍一个vue全局提示框组件,具体代码如下所示: toast.js 如何使用? 在main.js中 在component中 总结 以上所述是小编给大家介绍的vue的全局提示框组件实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大
本文向大家介绍基于vue的验证码组件的示例代码,包括了基于vue的验证码组件的示例代码的使用技巧和注意事项,需要的朋友参考一下 最近在自己写页面,模仿思否论坛,然后写登录注册UI的时候需要一个验证码组件. 去搜一下没找到什么合适的,而且大多都是基于后端的,于是自己手写一个。 演示 分析验证码组件 分析验证码功能 随机出现的数字大小写字母 (基础功能) 不同的数字或者字母有不同的颜色 (功能优化)
本文向大家介绍vue 项目中使用Loading组件的示例代码,包括了vue 项目中使用Loading组件的示例代码的使用技巧和注意事项,需要的朋友参考一下 什么是vue插件? 从功能上说,插件是为Vue添加全局功能的一种机制,比如给Vue添加一个全局组件,全局指令等; 从代码结构上说,插件就是一个必须拥有install方法的对象,这个方法的接收的第一个参数是Vue构造函数,还可以接收一个可选的参数
本文向大家介绍基于 Vue 的树形选择组件的示例代码,包括了基于 Vue 的树形选择组件的示例代码的使用技巧和注意事项,需要的朋友参考一下 本文介绍了基于 Vue 的树形选择组件。分享给大家,具体如下: 系统要求:Vue 2 基本特性 完美的多级联动效果 支持无限多的分级 有 全选、半选、不选 三种状态 截图展示 代码如下: 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多