* [html5] fix transition defaults.

Project: http://git-wip-us.apache.org/repos/asf/incubator-weex/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-weex/commit/eb79187c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-weex/tree/eb79187c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-weex/diff/eb79187c

Branch: refs/heads/0.12-dev
Commit: eb79187ced7ecf314900bb9f11e6c1a9dc17cb2f
Parents: 7932b23
Author: MrRaindrop <tekk...@gmail.com>
Authored: Mon Apr 17 11:13:11 2017 +0800
Committer: MrRaindrop <tekk...@gmail.com>
Committed: Mon Apr 17 11:13:11 2017 +0800

----------------------------------------------------------------------
 html5/render/vue/modules/animation.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/eb79187c/html5/render/vue/modules/animation.js
----------------------------------------------------------------------
diff --git a/html5/render/vue/modules/animation.js 
b/html5/render/vue/modules/animation.js
index 9efc4ba..a294896 100644
--- a/html5/render/vue/modules/animation.js
+++ b/html5/render/vue/modules/animation.js
@@ -19,8 +19,8 @@
 import { nextFrame, toCSSText, autoPrefix, camelizeKeys, normalizeStyle } from 
'../utils'
 
 function transitionOnce (vnode, config, callback) {
-  const duration = config.duration || 1000 // ms
-  const timing = config.timingFunction || 'ease'
+  const duration = config.duration || 0 // ms
+  const timing = config.timingFunction || 'linear'
   const delay = config.delay || 0  // ms
 
   // TODO: parse transition properties

Reply via email to