when trying to implement the flip countdown lib
The current number's lower part is being displayed in the current falling tile, which is wrong. As you can see in this demo: http://jsfiddle.net/mBFLA/1/
The drawing is made in this part of the code:
ch += '<li class="digit"><div id="digit-a' + i + '" class="digit-wrap"><div class="shadow"></div>' + '<div class="top-new"><span>' + dNew + '</span></div>' + '<div class="digit-hinge"><div class="top-old"><span>' + dOld + '</span></div>' + '<div class="bottom-new"><span>' + dNew + '</span></div></div>' + '<div class="bottom-old"><span>' + dOld + '</span></div></div></li>';
May guess is that the -webkit-backface-visibility: hidden; property is being ignored in the .top-old css class.
Note: I'm targeting WebKit for now.
Any tip is appreciated :)
Update: Demo is broken now in Chrome as of v20.0.1132.17. Oh well, don't have the time to mess with it to fix.– Alvin Wong Jul 3 '12 at 3:47