I don't want the hover animation in turn.js. Have tried this:
$('#flipbook').turn({
width: 400,
height: 300,
});
$('#flipbook').turn('peel', false);
Any kind of help will be greatly appreciated.
I don't want the hover animation in turn.js. Have tried this:
$('#flipbook').turn({
width: 400,
height: 300,
});
$('#flipbook').turn('peel', false);
Any kind of help will be greatly appreciated.
Share Improve this question edited Dec 30, 2012 at 19:00 Matt Zeunert 16.6k7 gold badges56 silver badges83 bronze badges asked Dec 30, 2012 at 18:43 Pranav BallaneyPranav Ballaney 3151 gold badge7 silver badges13 bronze badges2 Answers
Reset to default 9I used this:
flipbook.bind('start',
function (event, pageObject, corner)
{
if (corner == 'tl' || corner == 'tr' || corner == 'bl' || corner == 'br')
{
event.preventDefault();
}
}
);
Now, it never shows the peel effect :-)
corners = {
backward: [],
forward: [],
all: []
},
This should solve your problem.