When I use css transform ( -webkit-transform: scale(0.5)) in my html
page,
the dom object will become blank.
I have check the android's webkit porting.
The android graphics call the SkMatrix to do the real transform.
But it doesn't work. Does anyone have try the CSS transform in the
android webkit browser?
Here is my html code
<html>
<style type="text/css">
#haha{
width: 100px;
height: 100px;
background-color: red;
opacity: 1.0;
-webkit-transition: opacity 1s linear;
-webkit-transform: scale(0.5);
}
</style>
<body>
<div id="haha" onclick="this.style.opacity = 0.5;">test</div>
</body>
</html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---