Intro.js加载不止一次

时间:2014-12-23 20:18:31

标签: javascript jquery intro.js

此代码仅允许它在没有刷新页面的情况下对intro.js充电一次。

    startbtn.on('click', function(e){
      e.preventDefault();
      introguide.start();
      $(this).hide();
    });

     // Boton Finalizar Tour
    introguide.oncomplete(function() {
      if(startbtn.css('display') == 'none') {
        startbtn.show();
      }
    });
    introguide.onexit(function() {
      if(startbtn.css('display') == 'none') {
        startbtn.show();
      }
    });

点击链接后如何无限期加载?

0 个答案:

没有答案