12-09-2011 05:27 AM - edited 12-09-2011 05:29 AM
Hi,
At the very last minute before our app launch we came across following issue. So feed back would be highly appreciated. We have an animation on browser field which works fine in Curve running on 5.0. But a torch running os 6 does not animate it fast enough.
function doSlide()
{
if (count >= arr.length) count = 0;
for (var ind = 0; ind < arr.length; ind++)
{
arr[ind].style.display = "none";
}
arr[count++].style.display = "block";
setTimeout(function()
{
doSlide();
}, timeout);
}
I have pass 200, 100, 50, 10, 5 to timeout but it does not respond. Is blackberry torch can only handle certaing speed?
Please help.
Janaka
12-14-2011 12:53 PM
Hi lakmalvbj,
Have you tried using CSS3 transitions instead for 6.0? It may perform faster.
button below the post(s)01-11-2012 06:08 AM
thank you for your reply. Tried css3 but no luck. So I replaced the animation with a image and some text.