From our sponsor: Ready to show your plugin skills? Enter the Penpot Plugins Contest (Nov 15-Dec 15) to win cash prizes!
We’ve updated BookBlock, the content flip plugin. It has undergone some major changes with some improvements and we’ve added some new functionality. Take a look at the original article to see how to use it and what options are available.
Demos
We’ve updated the demos and added some different examples:
- Demo 1: Default configuration with navigation examples
- Demo 2: Horizontal flipping
- Demo 3: RTL Support (right-to-left support)
- Demo 4: Fullscreen example
- Demo 5: Multiple instances with dots navigation
Summary of Changes
- Removal of unnecessary and outdated prefixes in the CSS
- Many styles that were added with JS before are now in the stylesheet. This allows for a better control.
- We’ve added support for horizontal flipping (see demo 2)
- We’ve added support for RTL (see demo 3)
- We’ve added methods for going to the first and last page
- There is a Vanilla JS version of the plugin
Awesome :D! Actually I was looking for somthing like this some month ago, love it! thanks!
Fabulous, as always. Thank you!
Would it be possible to explain which prefixes are no longer necessary?
Wow! nice features! especially the calendar.
Is there a way to remove the flicker effect on the iphone? Besides that seems to work great.
thank you very much for always supporting the design and creativity. The tutorials are really useful and instructive.
Awesome love it 😀 thanks for sharing
Very coool.!!!!!
Nice share the calender is awesome 🙂 🙂
Nice I like it
Really nice job, but not working in Opera (tested in the version 12.15)
where do it put the onEndFlip : function( page, isLimit ) { return false; } ? tried it everywhere I can think of – we could use a demo of it looping maybe?
Thanks for the great work
onEndFlip: function(old, page, isLimit) { return false; ) it’s work correctly
I have used your previous book block plugin in my website: http://www.whalaashrinathji.com/darshans.html but i am not able to view the effect online. On my system its working fine but when I upload its not showing plugin effect. Could you please visit the page and help on it.
AWESOME!
its awesome, how to change a horizontal transition from top to bottom as default?
Hey
This is a great plug-in and I absolutely love it.
I have been experimenting a lot with it and I found one issue that I can’t fix!
I have been using demo 4 and when I put photos onto pages, it works great. Plus, when you re-size the browser window the photo decreases (or increases) in size along with it – all good so far.
Is there a way to keep the entire book, aspect fixed? The same as though you were re-sizing a PDF, for example?
So that when a user re-sizes a browser to an extreme the photo doesn’t become distorted and will always show at the same aspect ratio as it was meant to be.
I showed this plug-in to a photographer and he loved it but didn’t want to use it because if this. I can sort of understand his point – anyone have an idea on how to fix this??
Many thanks
Rob
can any one help me………..
how to use this in asp.net..
pls………………..
Wonderful, I was studying this solution when I saw the update.
May I ask a question:
How can I hide/show the toolbar (or navbar) on full screen example?
I’m preparing my site, and I’m seeking a pretty solution for comic reading online.
Of course, later I’ll had to find a solution for format, but one thing at a time.
Anyway, many thanks for your amazing shared work. Muchas gracias.
these articles and demos are always so great and always an inspiring way to start my day. thanks for the continuous effort! 🙂
This is very awesome. Is there a way to have a dynamic height per slide? Or does a set height have to set via CSS? I’m wondering if we can use JS to specify the height per slide.
I have a wonder. How to make this on flip effect like in the demo Experimental Page Layout Inspired by Flipboard but without the front and back cover page. It would bring more nice effect. Any idea or suggestion how to do ?
Did you ever figure out a way to not have the front and back? The site that led me here http://www.leggiadro.com/lookbook/ seems to have figured it out. This is what I need to copy and I’m not a coder. I’m lost how to begin and hoping to find some direction/tutorial of the steps. Thanks.
Hello! Can you make a full width background image instead of just a background colour? Because I tried but my background image splited half.
config.$bookBlock.bookblock is not a function
and images are not display in the page though the path are exact
Awesome! I love it! I used this thing on this site: http://utajanlo.hu/egzotikus/
I have no words to thank you. i grateful to you. thanks.
how to use this plugin for dynamic page..am using it for jquery mobile..it does not working..how to implement it
i need a jquery (like flipboard ) for dynamic pages..am retrieving the latest post through json..i want to implement a flipboard animations
Hi Pedro, for Chrome and Firefox work very good, but don´t work for IE, How I can search a solution?
Thanks.
Hello Pedro, I’ve been tinkering with Bookblock and am impressed with it. Great stuff! Could be good for sample pages of layout work.
I began by previewing results in Safari where all looked good but on opening the same test files in Firefox (and reportedly IE from a friend who viewed what I’d been doing) there was a major difference. In Safari I was able to load PDF pages and they displayed and flipped just fine. In Firefox and IE PDFs do not display. I can convert the pages to Jpeg and they work but text rendering is poor by comparison with PDF.
Any idea why PDFs display in Safari but not Firefox and IE? Have you noticed this and maybe found a workaround for good text display?
Many thanks
Pete
Hi Pedro
I am having an issue with Chrome & Safari only recently that the page flip is now flickering see – http://bondichai.com.au/the-perfect-recipe/
Your example is fine on this site but if I download the sample files and then view locally they are flickering also. Is there something I’m missing or is this something new with Chrome v33
Hi Glen, there was indeed an update to the bookblock.css file. The changes were only made in the GitHub repo though, my mistake. The zip file is now updated! Let me know if it works for you. Cheers.
Hello Pedro… great plugin, but im stuck on a problem that i can’t solve cause im kinda new in the JavaScript world.
In the previous (not revised) tutorial you said that to get the current page index we need:
var current = 0;
$(‘#bb-bookblock’).bookblock({
onEndFlip : function(page){
current = page;
}
});
i need this so i can sync different audio on different page and autoplay it (not with a button) which i know how to do but i need the current page number and with the code that you provided above i don’t get it for some reason…maybe i put it in the wrong place in the code, or i do something terribly wrong with the syntax 🙂 i don’t know if i should use onBeforeFlip, onEndFlip or just get the current variable from the plugin but i don’t know how…please help.
Thanks.
Try replacing onEndFlip : function(page) with onEndFlip : function(old, page, isLimit). Let me know if it works. Cheers
flip view is not working on IE9. Is there any solution?
HI Pedro, thanks for the reply.
I tried what you suggested about replacing onEndFlip but i still don’t get the index of the page…i call the function right below the tag and the global variable current initialized on 0, and i put a alert(“Page is:” +current) right below config.$bookBlock.bookblock( ‘next’ ); where i add the navigation events so i can get the alert and the index every time i click next just for checking and debugging and all i get is “Page is: 0” on every slide…i hope im not doing something terribly wrong on my side.
Would you mind pasting that part of the code here?
var current = 0;
$(‘#bb-bookblock’).bookblock({
onEndFlip : function(old, page, isLimit){
current = page;
}
});
var Page = (function() {
var config = {
$bookBlock : $( ‘#bb-bookblock’ ),
$navNext : $( ‘#bb-nav-next’ ),
$navPrev : $( ‘#bb-nav-prev’ ),
$navFirst : $( ‘#bb-nav-first’ ),
$navLast : $( ‘#bb-nav-last’ ),
},
init = function() {
config.$bookBlock.bookblock( {
speed : 1000,
shadowSides : 0.8,
shadowFlip : 0.4,
} );
initEvents();
},
initEvents = function() {
var $slides = config.$bookBlock.children();
// add navigation events
config.$navNext.on( ‘click touchstart’, function() {
config.$bookBlock.bookblock( ‘next’ );
alert(“Page is: ” +current);
/////////////////////////////////////////////////////////////////
var allaudio = document.getElementsByClassName(‘audio’);
for( var i=0; i<allaudio.length; i++)
{
allaudio[i].pause();
allaudio[i].src = allaudio[i].src;
}
/////////////////////////////////////////////////////////////////
return false;
} );
Here is what i do… and on every next click i get "Page is: 0"
The onEndFlip function declaration
onEndFlip : function(old, page, isLimit){ current = page; }
should be inside of the initialization of the BookBlock which in your case is inside the init function. So your init function should look like:
init = function() { config.$bookBlock.bookblock( { speed : 1000, shadowSides : 0.8, shadowFlip : 0.4, onEndFlip : function(old, page, isLimit){ current = page; } } ); initEvents(); }
I think this should solve your problem.
Cheers
Hi, very nice plugin. I was wondering if there a possibility (and how to do that) for small tablets and smartphones switch to one page version. What I mean is to target the narrow screens and in place of twi horizontal pages make flip page by page, like in FullscreenBookBlock plugin?
Thanks
Hi,
Love your plugin.
But since I’ve started using LESS for my css, when turning BookBlock pages I see like a delay of application of styles defined with LESS rules …
What does it have to do with?
Thanks
I am having a visibility issue and am uncertain of how to resolve it. I used demo 1 as a base, then changed the size in .bb-bookblock { to be 612px wide x 387px high. When I test it part of the book (bottom and right sides) disappears when the transition is happening, then reappears when it is done. What do I need to adjust to fix this? Sorry, not super experienced with transforms.
Super cool demo, I like it. One thing, was restructuring some of the demos, and am having problems getting buttons within the bb-bookblock to work consistently. The first page with buttons will work, but subsequent pages will not.
Hi Pedro ,
” config.$bookBlock.bookblock is not a function” and images are not display in the page though the path are exact . Where is the problem ?