visionmedia / move.js

CSS3 backed JavaScript animation framework
http://visionmedia.github.com/move.js/
4.72k stars 685 forks source link

Animations not working in default Android browser #31

Open jbardnz opened 10 years ago

jbardnz commented 10 years ago

Hi

The example demo page doesn't work in the default android browser although it has full support for CSS3 animations. It works in other mobile browsers such as Chrome/FireFox.

jbardnz commented 10 years ago

Also doesn't seem to work in Safari Mobile on IOS 6. Works great on IOS7 though. It also doesn't work on Desktop Safari 5.1 (Windows) although CSS animations are supported.

yields commented 10 years ago

Hey man, sorry for the delay.

how can i reproduce those ? i have ios7 emulator, is there an emulator for the mobile browsers you mentioned ?

thanks.

jbardnz commented 10 years ago

Hey

Their is an android emulator: http://developer.android.com/tools/help/emulator.html

Not sure about IOS6 Emulator though.

apollonin commented 10 years ago

Yes, i have the same problem. on ios6 animations does not work. also at many androids too ((

petsa commented 8 years ago

hey

function transitions(el, styl){ if (el.transition) return true; styl = window.getComputedStyle(el); return !! parseFloat(styl.transitionDuration, 10); }

i found that some browser dont support 'styl.transitionDuration', it make the animation get to end ;

solution: find ' if (!supported || !has(el)) return fn(); ' in move.js and replace with ' if (!supported) return fn(); '

now it works !!