1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
| const steps = [
| {
| element: '#hamburger-container',
| popover: {
| title: 'Hamburger',
| description: 'Open && Close sidebar',
| position: 'bottom'
| }
| },
| {
| element: '#breadcrumb-container',
| popover: {
| title: 'Breadcrumb',
| description: 'Indicate the current page location',
| position: 'bottom'
| }
| },
| {
| element: '#header-search',
| popover: {
| title: 'Page Search',
| description: 'Page search, quick navigation',
| position: 'left'
| }
| },
| {
| element: '#screenfull',
| popover: {
| title: 'Screenfull',
| description: 'Set the page into fullscreen',
| position: 'left'
| }
| },
| {
| element: '#size-select',
| popover: {
| title: 'Switch Size',
| description: 'Switch the system size',
| position: 'left'
| }
| },
| {
| element: '#tags-view-container',
| popover: {
| title: 'Tags view',
| description: 'The history of the page you visited',
| position: 'bottom'
| },
| padding: 0
| }
| ]
|
| export default steps
|
|