When I test canvas animation used createJS,
I found afterimage.
I can find afterimage use setTimeout.
Canvas’s parent div changed after canvas’s animation started.
Devices error found is below.
Sharp AQUOS PHONE SHL24(Android 4.2.2)
Sony XperiaA SO-04E (Android 4.2.2)
pseudo code
1 2 3 4 5 6 7 8 9 10 11 12 |
<div id="scr01"> // ... some images </div> <div id="scr02"> <canvas id="anime"></canvas> </div> $("#anime")[some animation started by CreateJS] setTimeout(function(){ $("#scr01").hide(); $("#scr02").show(); },1000); |