/* This file contains proprietary software owned by Motorola Mobility, Inc.
No rights, expressed or implied, whatsoever to this software are provided by Motorola Mobility, Inc. hereunder.
(c) Copyright 2011 Motorola Mobility, Inc. All Rights Reserved.
*/ exports.animationPresets = { "text": "Animation Presets Library", "children": [{ "text": "Border Animations", "children": [ { "text": "Border Morph", "selectorBase" : "border-morph", "rules" : [{ "styles" : { "-webkit-animation-name": "border-morph", "-webkit-animation-duration": "2s", "-webkit-animation-iteration-count": "infinite" } }, { "isKeyFrameRule": true, "keys" : [{ "keyText": "0%", "styles": { "border-radius": "0" } }, { "keyText": "50%", "styles": { "border-radius": "100%" } }, { "keyText": "100%", "styles": { "border-radius": "0%" } }] }] }] }, { "text": "2D Animations", "children": [ { "text": "Slide Out with Fade", "selectorBase": "slide-fade-out", "rules" : [{ "selectorSuffix" : "", "styles" : { "-webkit-animation-name": "slide-fade-out", "-webkit-animation-duration": "5s", "-webkit-animation-iteration-count": "infinite", "-webkit-animation-direction": "normal", "-webkit-animation-timing-function": "ease", "-webkit-transform-style": "preserve-3d", "-webkit-animation-delay": "0s" } },{ "isKeyFrameRule": true, "keys" : [{ "keyText": "0%", "styles": { "opacity": "0", "-webkit-transform": "translate3d(0, 0, 0)" } }, { "keyText": "10%", "styles": { "opacity": "1", "-webkit-transform": "translate3d(0, 0, 0)" } }, { "keyText": "86%", "styles": { "opacity": "1", "-webkit-transform": "translate3d(0, 0, 0)" } }, { "keyText": "100%", "styles": { "opacity": "0", "-webkit-transform": "translate3d(540px, 0, 0)" } }] }] }] }, { "text": "3D Animations", "children": [ { "text": "Rotater", "selectorBase" : "rotate-with-alpha-keyframes", "rules" : [{ "styles" : { "-webkit-animation-name": "rotate-with-alpha-keyframes", "-webkit-animation-duration": "5s", "-webkit-animation-iteration-count": "infinite", "-webkit-animation-direction": "normal", "-webkit-animation-timing-function": "ease-out", "-webkit-transform-origin": "100% 50%", "-webkit-transform-style": "preserve-3d", "-webkit-animation-delay": "0s" } },{ "isKeyFrameRule": true, "keys" : [{ "keyText": "0%", "styles": { "opacity": "1", "-webkit-transform": "rotateY(0deg)" } }, { "keyText": "70%", "styles": { "opacity": "1", "-webkit-transform": "rotateY(0deg)" } }, { "keyText": "85%", "styles": { "opacity": "0", "-webkit-transform": "rotateY(95deg)" } }, { "keyText": "86%", "styles": { "opacity": "0", "-webkit-transform": "rotateY(-90deg)" } }, { "keyText": "100%", "styles": { "opacity": "1", "-webkit-transform": "rotateY(0deg)" } }] }] }, { "text": "Rotate with Fade In", "selectorBase" : "rotate-with-fade-in", "rules" : [{ "selectorSuffix" : "", "styles" : { "-webkit-animation-name": "rotate-with-fade-in", "-webkit-animation-duration": "5s", "-webkit-animation-iteration-count": "infinite", "-webkit-animation-direction": "normal", "-webkit-animation-timing-function": "ease-out", "-webkit-transform-origin": "100% 50%", "-webkit-transform-style": "preserve-3d", "-webkit-animation-delay": "0s" } },{ "isKeyFrameRule": true, "keys" : [{ "keyText": "0%", "styles": { "opacity": "0", "-webkit-transform": "rotateY(-90deg)" } }, { "keyText": "15%", "styles": { "opacity": "1", "-webkit-transform": "rotateY(0deg)" } }, { "keyText": "85%", "styles": { "opacity": "1", "-webkit-transform": "rotateY(0deg)" } }, { "keyText": "100%", "styles": { "opacity": "0", "-webkit-transform": "rotateY(95deg)" } }] }] }] }] };