02-13-2011 10:27 AM
Hi guys,
having watched the WebWorks Podcasts lately, I remember something like "full HTML5 support".
I am now building a project with some fancy CSS3 effects, but they don't seem to work for me (in the emulator).
They do not only happen, but the emulator seems to hang for 0.5s or so, whenever I start a new animation (-webkit-transform).
Is this
Solved! Go to Solution.
02-13-2011 12:21 PM
I have two different playbook applications that use -webkit-transform with no issues.
Are you using the latest simulator (0.9.3) ?
My suggestion is try a simple html file with just a button and throw the following style on it. When you touch the button in the simulator, it should grow to double the size and we'll know if you are having some other issue.
button {
width: 60px;
height: 40px;
}
button:active {
-webkit-transform: scale(2);
}
02-14-2011 04:04 AM
Thanks for your prompt reply!
This really seems to be an emulator issue... I just got it to work by using two instead of one CPU cores.
Strange, but worked ![]()