javascript - Phonegap: Canvas is not refreshing properly -


i doing android application in phonegap. in canvas made moving image touching.i tested in device having different versions

when run 4.1, 4.2 or 4.3 image getting duplicating while moving.all other version fine

i try applying canvas background color , opacity, still duplicating

is there solution this

thanks in advance

i check application 4.0,4.1,4.2,4.3 , 4.4

only problem in jelly bean

 var canvas = document.getelementbyid('canvas');          canvas.style.opacity = 0.99;          settimeout(function() {             canvas.style.opacity = 1;          }, .01); 

this code working me


Comments

Popular posts from this blog

javascript - Google App Script ContentService downloadAsFile not working -

javascript - Function overwritting -

c# - Exception when attempting to modify Dictionary -