egjs-jquery-transform icon indicating copy to clipboard operation
egjs-jquery-transform copied to clipboard

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

Open sculove opened this issue 8 years ago • 0 comments

@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

sculove avatar Aug 03 '17 11:08 sculove