我不想在turn.js中使用悬停动画.试过这个:
$('#flipbook').turn({
width: 400,
height: 300,
});
$('#flipbook').turn('peel', false);?
Run Code Online (Sandbox Code Playgroud)
任何形式的帮助将不胜感激.
我用过这个:
flipbook.bind('start',
function (event, pageObject, corner)
{
if (corner == 'tl' || corner == 'tr' || corner == 'bl' || corner == 'br')
{
event.preventDefault();
}
}
);
Run Code Online (Sandbox Code Playgroud)
现在,它从未显示剥离效果:-)