Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

eg.animate unit test is broken on Samsung Galaxy S2 (android 2.3) #10

Open
sculove opened this issue Aug 3, 2017 · 0 comments
Open

Comments

@sculove
Copy link
Contributor

sculove commented Aug 3, 2017

@happyhj commented on Fri Feb 12 2016

"Relative animate Test - +=rotate(-30deg) translate(10px, 50%)" is broken.
It seems like last call back function is not executing.


@jongmoon commented on Fri Mar 25 2016

I can find the pattern when it reproduce this issue. on Galaxy S2 (Android 2.3)

If current element's transform style has combination of matrix and exponential number. this issue occurs

for example, current element has

<div style="transform:matrix(-1.11022e-16, -1, 1, -1.11022e-16, 0, 0)"></div>

This element can not be transformed relatively

Below code have no UI change.
$el.css("transform":"matrix(-1.11022e-16, -1, 1, -1.11022e-16, 0, 0) translateX(10px)");

Solution?
Galaxy S2& Android 2.3 ==> Make exponetial number to normal number.

for exmple
transform:matrix(-0.00000000000000011102, -1, 1, -0.00000000000000011102, 0, 0)

But... I think it looks bad. Do we must support this?


@jongmoon commented on Thu Apr 21 2016

Resolved by #166


@jongmoon commented on Tue Jul 18 2017

It was not resolved by #166

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

No branches or pull requests

1 participant