zoukankan      html  css  js  c++  java
  • 网站功能操作分布引导插件

     官网:

    https://introjs.com/

     

    要引入的js:

    http://www.staticfile.org/

    intro.js

    function startIntro(){
                    var intro = introJs();
                    intro.setOptions({
                        //对应的按钮
                        prevLabel:"←上一步",
                        nextLabel:"下一步→",
                        skipLabel:"跳过",
                        doneLabel:"结束",
                        
                        steps: [
                        
                        {
                            element: document.querySelector('.topselect'),
                            intro: "搜索功能"
                        },
                        {
                            element: document.querySelector('button.fullscreen'),
                            intro: "全屏功能",
                            position: 'right'
                        },
                        {
                            element: document.querySelector('div.keep-open'),
                            intro: '显示字段功能',
                            position: 'left'
                        },
                        {
                            element: document.querySelector('div.export'),
                            intro: "导出功能",
                            position: 'bottom'
                        },
                        {
                            element: document.querySelector('span.page-list'),
                            intro: '表格显示条数功能',
                            position: 'top'
                        },
                        {
                            element: document.querySelector('div.pagination'),
                            intro: '分页显示功能',
                        }
                        ]
                    });
                    intro.start();
                }

    中文引导工具(使用简单的div)

    https://devework.com/intro-js.html

  • 相关阅读:
    P4149 [IOI2011]Race dsu on tree
    CodeForces
    2020牛客国庆集训派对day2 CHEAP DELIVERIES
    Hero In Maze
    topo排序
    今年暑假不AC
    小国的游戏
    Stall Reservations
    博弈论
    Reversed Words
  • 原文地址:https://www.cnblogs.com/wuss/p/9772131.html
Copyright © 2011-2022 走看看