diff options
author | Lionel Landwerlin <llandwerlin@gmail.com> | 2013-03-19 12:02:21 +0000 |
---|---|---|
committer | Lionel Landwerlin <llandwerlin@gmail.com> | 2013-03-19 12:02:21 +0000 |
commit | 9c36b1a915905dd4421e27113b3de882a12c4f9c (patch) | |
tree | d0ccda321b2a67afa26965104da7a86d20bae999 | |
parent | 8ced6aea1ba32992118a8de2b8053ff59ea9cef4 (diff) | |
download | clutter-gst-9c36b1a915905dd4421e27113b3de882a12c4f9c.tar.gz |
examples: video-flip: tweak animation duration again
-rw-r--r-- | examples/video-flip.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/video-flip.js b/examples/video-flip.js index f430c06..a2d0901 100644 --- a/examples/video-flip.js +++ b/examples/video-flip.js @@ -163,7 +163,7 @@ for (let i = 0; i < ROWS; i++) { actors.push(actor); let animEnterParams = { - duration: 250, + duration: 350, mode: Clutter.AnimationMode.EASE_OUT_CUBIC, properties: { 'rotation-angle-y': 180, @@ -179,7 +179,7 @@ for (let i = 0; i < ROWS; i++) { }, }; let animLeaveParams = { - duration: 250, + duration: 350, mode: Clutter.AnimationMode.EASE_OUT_CUBIC, properties: { 'rotation-angle-y': 0, |