move.js icon indicating copy to clipboard operation
move.js copied to clipboard

Animations not working in default Android browser

Open jbardnz opened this issue 11 years ago • 5 comments

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 avatar Oct 07 '13 00:10 jbardnz

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.

jbardnz avatar Oct 07 '13 03:10 jbardnz

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.

yields avatar Oct 14 '13 17:10 yields

Hey

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

Not sure about IOS6 Emulator though.

jbardnz avatar Oct 18 '13 02:10 jbardnz

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

apollonin avatar Jul 24 '14 12:07 apollonin

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 !!

petsa avatar Sep 09 '15 10:09 petsa