0

我正在使用 turn.js 和 hash.js 创建一个分页的翻书:www.professorleonidas.com/livro

我想要的是页码在目录之后开始,所以基本上将散列中显示的页码偏移 8 (第 9 页在地址栏中变为 1)。

当然,我仍然希望链接能够正常工作。所以http://www.professorleonidas.com/livro/#page/9转到新的 9(不是 1)。

剧本:

$('.book').turn({
        // Width

        width:960,

        // Height

        height:600,

        // Elevation

        elevation: 50,

        // Enable gradients

        gradients: true,

        // Auto center this flipbook

        autoCenter: true,

        // Events

        when: {
            turning: function(event, page, view) {

                Hash.go('page/' + page).update();
                //Hash.go('page/' + page).update();

            }}

});
Hash.on('^page\/([0-9]*)$', {
    yep: function(path, parts) {

        var page = parts[1];

        if (page!==undefined) {
            if ($('.book').turn('is'))
                $('.book').turn('page', page);
        }

    },
    nop: function(path) {

        if ($('.book').turn('is'))
            $('.book').turn('page', 1);
    }
});`

希望有人能给我一些指导。

谢谢!

4

1 回答 1

0

我认为您需要更新页面

when: {
   turning: function(event, page, view) {


   $(this).turn('page');
   Hash.go('page/' + page).update();
   //Hash.go('page/' + page).update();

}
于 2013-12-18T10:56:37.953 回答