steps.js 1.0 KB

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