driver.js 页面出现指导功能

Posted 晚星@

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了driver.js 页面出现指导功能相关的知识,希望对你有一定的参考价值。

driver.js 页面出现指导功能

指导功能

代码如下:

<template>
  <div class="app-container">
    <aside>
       $t('guide.description') 
      <a href="https://github.com/kamranahmedse/driver.js" target="_blank">driver.js.</a>
    </aside>
    <el-button icon="el-icon-question" type="primary" @click.prevent.stop="guide">
       $t('guide.button') 
    </el-button>
  </div>
</template>

<script>
import Driver from 'driver.js' // import 
import 'driver.js/dist/driver.min.css' // import driver.js css
import steps from './steps'

export default 
  name: 'Guide',
  data() 
    return 
      driver: null
    
  ,
  mounted() 
    this.driver = new Driver()
  ,
  methods: 
    guide() 
      this.driver.defineSteps(steps)
      this.driver.start()
    
  

</script>

steps 绑定的元素显示指导

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

以上是关于driver.js 页面出现指导功能的主要内容,如果未能解决你的问题,请参考以下文章

js 实现打印功能

浏览器安全之同源策略

java怎么实现把页面的表格另存为一个word文档,求各位大神指导

关于测试流程的指导心得

iOS指导用户如何使用的功能 ios引导页

vue+element打印页面功能