I am using the tunr.js Jquery plug-in to create a book in a Web Site I am doing. It is working fine, but the problem is with his dimensions. I can only change them in this part of the code:
$(document).ready(function(){
$("#flipbook").turn({
width: 1150,
height: 805,
autoCenter: true
});
});
</script>
But it is not letting me change the dimensions in pixels or % and I don´t know how to make it responsive. The url of the page in case you want to see it working is http://hdeprada.com/webs/Libros/index2.html
The problem I have is that I want it to resize to the entire screen in every device, so the book can be read. Anybody that can explain me what to do?
Thank you very much in advance!