topical media & game development
mobile-js-jquery-ch07.txt / txt
chapter: Creating Themes
==================
.card.out {
-webkit-transform: translateY(-100%);
-webkit-animation-name: cardout;
z-index: 1; /* It's above */
}
.card.in {
-webkit-transform: translateY(0);
z-index: 0; /* It's below */
}
webkit-keyframes cardout {
from {
-webkit-transform: translateY(0%);
}
to {
-webkit-transform: translateY(-100%);
}
}
====================================
<a href="#page2" data-role="button" data-transition="card">Page 2</a>
==================
(C) Æliens
04/09/2009
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.