在遇到網頁內容有着較大調整的時候,每每須要一個導覽功能去告訴用戶,某某功能已經調整到另一個位置。比較常規的辦法是添加一個蒙層,高亮顯示被調整的區域,而後經過文字介紹去完成引導。咱們把這個功能稱爲「導覽」,而 Smartour 則把這個導覽的功能抽離出來,提供了一個開箱即用的解決方案。javascript
項目地址:github.com/jrainlau/sm… 官方示例:jrainlau.github.io/smartourcss
Smartour 被構建成了 umd
和 es module
模塊,容許用戶經過不一樣的方式引入。html
npm install smartour
複製代碼
/* ES Modules */
import Smartour from 'smartour/dist/index.esm.js'
/* CommandJS */
const Smartour = require('smartour')
/* <script> */
<script src="smartour/dist/index.js"></script>
複製代碼
Smartour 提供了一個很是簡單的 API focus()
, 這是高亮一個元素最簡單的方式。java
let tour = new Smartour()
tour.focus({
el: '#basic-usage'
})
複製代碼
插槽 slot
是用於爲高亮元素提供描述的 html 字符串。git
let tour = new Smartour()
tour.focus({
el: '#pure-string',
slot: 'This is a pure string'
})
複製代碼
let tour = new Smartour()
tour.focus({
el: '#html-string',
slot: ` <div> <p>This is a html string</p> </div> `
})
複製代碼
插槽的位置能夠選擇4個不一樣的方向: top
, right
, left
, bottom
.github
設置 options.slotPosition
屬性便可覆蓋默認的 top
位置。npm
let tour = new Smartour()
tour.focus({
el: '#slot-positions',
slot: `top`,
options: {
slotPosition: 'top' // 默認爲 `top`
}
})
```buttonslot-bottom">Bottom</buttonbuttonbutton> ## 插槽事件 插槽所定義的元素也能夠綁定事件。咱們經過 `keyNodes` 屬性來爲插槽元素綁定事件。 `keyNodes` 是內容爲一系列 `keyNode` 的數組。 屬性 `keyNode.el` 是一個 css 選擇器,而 `keyNode.event` 屬性則是對應元素所綁定的事件。 ```javascript
let tour = new Smartour()
tour.focus({
el: '.slot-events-demo',
options: {
slotPosition: 'right'
},
slot: ` Click here to occur an alert event </button> Click here to occur an alert event </button> `,
keyNodes: [{
el: '.occur-1',
event: () => { alert('Event!!') }
}, {
el: '.occur-2',
event: () => { alert('Another event!!') }
}]
})
複製代碼
有的時候頁面須要不止一個導覽。Smartour 容許你把一系列的導覽經過 .queue()
放在一塊兒,而後挨個挨個地展現它們。api
舉個例子:數組
let tour = new Smartour()
tour
.queue([{
el: '.li-1',
options: {
layerEvent: tour.next.bind(tour)
},
slot: 'This is the 1st line.'
}, {
el: '.li-2',
options: {
layerEvent: tour.next.bind(tour)
},
slot: 'This is the 2nd line.'
}, {
el: '.li-3',
options: {
layerEvent: tour.next.bind(tour)
},
slot: 'This is the 3rd line.'
}])
.run() // 別忘了調用 `run()` 方法去展現第一個導覽
複製代碼
Smartour 是一個構建函數,它接收一個 options
參數去覆蓋其默認選項bash
讓咱們看看它的默認選項是什麼樣子的:
{
prefix: 'smartour', // class 前綴
padding: 5, // 高亮區域內邊距
maskColor: 'rgba(0, 0, 0, .5)', // 帶透明值的遮罩層顏色
animate: true, // 是否使用動畫
slotPosition: 'top' // 默認的插槽位置
layerEvent: smartour.over // 遮罩層點擊事件,默認爲結束導覽
}
複製代碼
除了 .focus()
,.queue()
和 .run()
API 之外,Smartour 還提供了另外三個 API 專門用於控制導覽的展現。
.next()
:展現下一個導覽(只能配合 .queue()
使用)。
.prev()
:展現上一個導覽(只能配合 .queue()
使用)。
.over()
:結束所有導覽。
Smartour 經過 element.getBoundingClientRect()
api 來獲取目標元素的寬高和位置信息,而後放置一個帶着 box-shadow
樣式的元素在其之上做爲高亮區域。
因爲點擊事件沒法再 box-shadow
的區域裏觸發,因此 Smartour 還放置了一個全屏透明的遮罩層用於綁定 layerEvent
事件。
高亮區域和插槽都被設置爲 absolute
。當頁面滾動時,document.documentElement.scrollTop
或者 document.documentElement.scrollLeft
的值就會變化,而後 Smartour 會實時修正它的位置信息。
MIT