Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Animations not working in default Android browser #31

Open
jbardnz opened this issue Oct 7, 2013 · 5 comments
Open

Animations not working in default Android browser #31

jbardnz opened this issue Oct 7, 2013 · 5 comments

Comments

@jbardnz
Copy link

jbardnz commented Oct 7, 2013

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
Copy link
Author

jbardnz commented Oct 7, 2013

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
Copy link
Contributor

yields commented Oct 14, 2013

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
Copy link
Author

jbardnz commented Oct 18, 2013

Hey

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

Not sure about IOS6 Emulator though.

@apollonin
Copy link

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

@petsa
Copy link

petsa commented Sep 9, 2015

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants