0

Hopscotch 示例之旅设置参数和调用hopscotch.startTour(tour);关闭“x”和“完成”按钮似乎都不能阻止它在页面加载后再次播放。

那怎么能做到呢?

4

1 回答 1

4

您可以在 onend 函数上使用 localstorage/cookie。

function setCookie(key, value) {
    var expires = new Date();
    expires.setTime(expires.getTime() + (1 * 24 * 60 * 60 * 1000));
    document.cookie = key + '=' + value + ';path=/' + ';expires=' + expires.toUTCString();
};

function getCookie(key) {
    var keyValue = document.cookie.match('(^|;) ?' + key + '=([^;]*)(;|$)');
    return keyValue ? keyValue[2] : null;
};

var tour = {
    onEnd: function() {
        setCookie("toured", "toured");
    },
    onClose: function() {
        setCookie("toured", "toured");
    }
};

// Initialize tour if it's the user's first time
if (!getCookie("toured")) {
    hopscotch.startTour(tour);
}
于 2015-06-12T19:35:03.737 回答