When I turn the pages using jQuery, the text in the page becomes blur.
This is the function I am using to turn the pages:
$('#book').turn({
display: 'double',
autoCenter: true,
acceleration: true,
elevation: 150,
page: nrPage,
when: {
first: function (e, page) {
$('.nav_arrow.prev').hide();
},
turned: function (e, page) {
if (page > 1) {
$('.nav_arrow.prev').fadeIn();
$('#about').hide();
}
if (page == 1) {
$('#about').css('z-index', 11);
}
if (page < $(this).turn('pages')) {
$('.nav_arrow.next').fadeIn();
}
update_fonts();
$(this).setPage(page);
},
turning: function (e, page) {
if (page < 2) {
$('#about').show();
} else {
$('#about').css('z-index', 5);
}
},
last: function (e, page) {
$('.nav_arrow.next').hide();
}
}
});
Need some guidance to ensure that the text does not become blur. Would appreciate any help. Thanks.