我正在使用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);
}
});`
希望有人能给我一些指导。
谢谢!
答案 0 :(得分:0)
我认为您需要更新页面
when: {
turning: function(event, page, view) {
$(this).turn('page');
Hash.go('page/' + page).update();
//Hash.go('page/' + page).update();
}