1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/*
Copyright (C) 2008, 2009 Charles Ying. All Rights Reserved.
This distribution is released under the BSD license.
http://css-vfx.googlecode.com/
See the README for documentation and license.
*/
.zflow
{
-webkit-touch-callout: none;
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.zflow div.centering
{
/*
position: absolute;
*/
-webkit-perspective: 600;
-webkit-transform-style: preserve-3d;
-webkit-transform: translate3d(0, 0, 0);
}
.zflow div.tray
{
position: absolute;
left: 50%;
top: 50%;
-webkit-transform-style: preserve-3d;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transition-property: -webkit-transform;
-webkit-transition-duration: 0.4s;
-webkit-transition-timing-function: ease-out;
}
.zflow div.cell
{
position: absolute;
-webkit-transform-style: preserve-3d;
-webkit-transform: translate3d(0, 0, 0);
-webkit-transition-property: -webkit-transform opacity;
-webkit-transition-duration: 0.4s;
-webkit-transition-timing-function: ease-out;
}
.zflow div.cell canvas
{
position: absolute;
}
|