内容简介:在遇到网页内容有着较大调整的时候,往往需要一个导览功能去告诉用户,某某功能已经调整到另外一个位置。比较常规的办法是添加一个蒙层,高亮显示被调整的区域,然后通过文字介绍去完成引导。我们把这个功能称为“导览”,而Smartour被构建成了
在遇到网页内容有着较大调整的时候,往往需要一个导览功能去告诉用户,某某功能已经调整到另外一个位置。比较常规的办法是添加一个蒙层,高亮显示被调整的区域,然后通过文字介绍去完成引导。我们把这个功能称为“导览”,而 Smartour 则把这个导览的功能抽离出来,提供了一个开箱即用的解决方案。
安装
Smartour被构建成了 umd
模块,允许用户通过不同的方式引入。
npm install smartour
/* ES Modules */ import Smartour from 'smartour' /* CommandJS */ const Smartour = require('smartour') /* <script> */ <script src="smartour/dist/index.js"></script>
const tour = new Smartour().queue([{ el: '#id', slot: ` <p>Something you want to guide to the visitors</p> ` }]) tour.next()
配置项
Smartour()
是一个构建函数,它接受一个 options
对象作为其配置项。
{ // `maskStyle` 为导览蒙层的样式 // 默认值将会和配置的值叠加,配置的内容可覆盖默认值 markStyle: ` position: fixed; box-shadow: 0 0 0 9999px rgba(0, 0, 0, .5); z-index: 9998; `, // 默认值 // `slotStyle` 是导览介绍内容的样式 // 默认值将会和配置的值叠加,配置的内容可覆盖默认值 slotStyle: ` position: fixed; z-index: 9999; }` // 默认值 // `maskPadding` 设置高亮区域的内边距 maskPadding: { vertical: 5, horizontal: 5 }, // 默认值(垂直、水平) // `slotPosition` 设置导览介绍内容的位置 // 可选项为:'top', 'top-right', 'top-left', 'bottom', 'bottom-right', 'bottom-left' slotPosition: 'bottom', // 默认值 // `maskEventType` 导览蒙层事件触发的方式 // 可选项为:'click', 'mouseon', 'mouseover', 'mousedown', 'mousemove', 'mouseup', 'touchstart', 'touchmove', 'touchend' maskEventType: 'click', // 默认值 // `maskEvent` 导览蒙层事件 maskEvent: () => {} // 默认值
API
-
queue(TourList)
.queue()
接受一个TourList
参数, 这个参数是包含了一些列TourListItem
的数组。[{ // `el` 为需要高亮的元素的CSS选择器 el: '#id-1', // `slot` 是导览内容的html字符串 slot: ` <p>This is a demo...<p> <button class="key-1">Cancel</button> <button class="key-2">OK</button> `, // `keyNodes` 定义了导览内容的 html 节点和其所绑定的事件 keyNodes: [{ el: '.key-1', eventType: 'click', event: (e) => { alert('Click "Cancel" button') } }, { el: '.key-2', eventType: 'mouseover', event: (e) => { alert('Hover "OK" button') } }] }]
-
next()
.next()
方法用于展示下一个导览。它返回一个包含了Smartour
实例的 Promise。const tour = new Smartour().queue(TourList) await tour.next() // 展示第一个导览 await sleep(2000) // 延时2秒 await tour.next() // 展示第二个导览
-
prev()
.prev()
方法用于展示上一个导览。它返回一个包含了Smartour
实例的 Promise。const tour = new Smartour().queue(TourList) await tour.next() // 展示第一个导览 await sleep(2000) // 延时2秒 await tour.next() // 展示第二个导览 await sleep(2000) // 延时2秒 await tour.prev() // 重新展示第一个导览
-
over(smartourInstance)
.over(smartourInstance)
用于移除所有的导览。const tour = new Smartour().queue(TourList) await tour.next() // 展示第一个导览 await sleep(2000) // 延时2秒 tour.over(tour) // 移除所有导览
-
reset(options)
为
Smartour
实例重新设置配置项。const tour = new Smartour().queue(TourList) await tour.next() // 展示第一个导览 await sleep(2000) // 延时2秒 tour.reset({ maskStyle: ` border-radius: 5px; // 为高亮区域设置圆角 ` }) tour.next() // 展示下一个导览
使用例子
如 官方示例 ,其 Smartour 的用法如下:
<body> <main> <h1 class="title">Smartour</h1> <h3 class="desc">Makes website guiding easier</h3> <a class="link" href="https://github.com/jrainlau/smartour/blob/master/README.md#smartour">Document</a> </main> </body>
const tour = new Smartour({ slotPosition: 'top', maskStyle: `border-radius: 4px;` }).queue([{ el: '.title', slot: ` <div class="guide guide-1"> <p>This is my name!</p> <button class="btn btn-1">OK.</button> </div> `, keyNodes: [{ el: '.btn-1', event () { tour.reset({ slotPosition: 'bottom-right', maskStyle: `border-radius: 4px;` }) tour.next() } }] }, { el: '.desc', slot: ` <div class="guide guide-2"> <p>This is what my job is!</p> <button class="btn btn-2">Yeah.</button> </div> `, keyNodes: [{ el: '.btn-2', event () { tour.reset({ slotPosition: 'bottom', maskStyle: `border-radius: 4px;` }) tour.next() } }] }, { el: '.link', slot: ` <div class="guide guide-3"> <p>This is the document!</p> <button class="btn btn-3">Got it.</button> </div> `, keyNodes: [{ el: '.btn-3', event () { tour.over(tour) } }] }]) tour.next()
证书
MIT
以上所述就是小编给大家介绍的《Smartour——让网页导览变得更简单》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 卷积神经网络导览
- KubeCon China 2019 机器学习相关 Talk 导览
- SVG-让世界变得柔软
- AI 让云迁移变得更容易!
- 让动画变得更简单之FLIP技术
- W20 让 520 变得 AI 起来
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
人人都是架构师:分布式系统架构落地与瓶颈突破
高翔龙 / 电子工业出版社 / 2017-5 / 69
《人人都是架构师:分布式系统架构落地与瓶颈突破》并没有过多渲染系统架构的理论知识,而是切切实实站在开发一线角度,为各位读者诠释了大型网站在架构演变过程中出现一系列技术难题时的解决方案。《人人都是架构师:分布式系统架构落地与瓶颈突破》首先从分布式服务案例开始介绍,重点为大家讲解了大规模服务化场景下企业应该如何实施服务治理;然后在大流量限流/消峰案例中,笔者为大家讲解了应该如何有效地对流量实施管制,避......一起来看看 《人人都是架构师:分布式系统架构落地与瓶颈突破》 这本书的介绍吧!