摘要:前言本文主要組件的大致框架,提供少量可配置選項(xiàng)。旨在大致提供思路常用于展示鼠標(biāo)時(shí)的提示信息。由屬性決定展示效果屬性值為方向?qū)R位置四個(gè)方向。屬性用于設(shè)置觸發(fā)的方式,默認(rèn)為。
前言
本文主要Alert 組件的大致框架, 提供少量可配置選項(xiàng)。 旨在大致提供思路
tooltip常用于展示鼠標(biāo) hover 時(shí)的提示信息。
模板結(jié)構(gòu)大致結(jié)構(gòu)DOM結(jié)構(gòu) 一個(gè)div 包含 箭頭 及 氣泡內(nèi)容。
v-bind中可選tooltip位置,是否禁用,及顯示隱藏
slot 差值供自定義 默認(rèn)接收content內(nèi)容
scriptimport EventListener from "../utils/EventListener.js"; export default { props: { // 需要監(jiān)聽的事件 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 { // 通過計(jì)算所得 氣泡位置 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計(jì)算出位子 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."); // 獲取監(jiān)聽對(duì)象 const triger = this.$refs.trigger.children[0]; // 根據(jù)trigger監(jiān)聽特定事件 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; }, // 在組件銷毀前移除監(jiān)聽,釋放內(nèi)存 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;
封裝的事件監(jiān)聽
使用使用content屬性來決定hover時(shí)的提示信息。由placement屬性決定展示效果:placement屬性值為:方向-對(duì)齊位置;四個(gè)方向:top、left、right、bottom。trigger屬性用于設(shè)置觸發(fā)tooltip的方式,默認(rèn)為hover。
content內(nèi)容分發(fā)鼠標(biāo)移動(dòng)到我上面試試 點(diǎn)我試試
設(shè)置一個(gè)名為content的slot。
Attributes鼠標(biāo)移動(dòng)到我上面試試 我是內(nèi)容分發(fā)的conent。
參數(shù) | 說明 | 類型 | 可選值 | 默認(rèn)值 |
---|---|---|---|---|
content | 顯示的內(nèi)容,也可以通過 slot#content 傳入 DOM | String | — | — |
placement | Tooltip 的出現(xiàn)位置 | String | top/right/bottom/left | top |
trigger | tooltip觸發(fā)方式 | String | — | hover |
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/89137.html
摘要:的組件拆解之的中的組件在目錄下。這個(gè)組件核心部分是分別涉略了。 Element的組件拆解之Tooltipelement ui的中的 toolpic組件 在 packages/tooltip目錄下。 這個(gè)組件核心部分是 showImg(https://segmentfault.com/img/bVbnFjF?w=332&h=214); toolpic 分別涉略了?!秏ain.js vue...
摘要:的組件拆解之的中的組件在目錄下。這個(gè)組件核心部分是分別涉略了。 Element的組件拆解之Tooltipelement ui的中的 toolpic組件 在 packages/tooltip目錄下。 這個(gè)組件核心部分是 showImg(https://segmentfault.com/img/bVbnFjF?w=332&h=214); toolpic 分別涉略了。《main.js vue...
摘要:的組件拆解之的中的組件在目錄下。這個(gè)組件核心部分是分別涉略了。 Element的組件拆解之Tooltipelement ui的中的 toolpic組件 在 packages/tooltip目錄下。 這個(gè)組件核心部分是 showImg(https://segmentfault.com/img/bVbnFjF?w=332&h=214); toolpic 分別涉略了。《main.js vue...
摘要:組件結(jié)構(gòu)同組件結(jié)構(gòu)通過方法獲取元素的大小及其相對(duì)于視口的位置,之后對(duì)提示信息進(jìn)行定位??梢杂脕磉M(jìn)行一些復(fù)雜帶校驗(yàn)的彈窗信息展示,也可以只用于簡(jiǎn)單信息的展示??梢酝ㄟ^屬性來顯示任意標(biāo)題,通過屬性來修改顯示區(qū)域的寬度。 手把手教你擼個(gè)vue2.0彈窗組件 在開始之前需要了解一下開發(fā)vue插件的前置知識(shí),推薦先看一下vue官網(wǎng)的插件介紹 預(yù)覽地址 http://haogewudi.me/k...
閱讀 1876·2023-04-25 19:51
閱讀 1181·2021-11-15 11:43
閱讀 4543·2021-11-02 14:40
閱讀 2008·2021-10-11 10:59
閱讀 1349·2021-09-22 15:05
閱讀 1038·2021-09-09 09:32
閱讀 660·2019-08-30 15:56
閱讀 560·2019-08-30 15:52