It seems like a simple request, but I know it might actually be quite challenging to implement. It's been a while since I've worked with HTML.
My main requirement is that I only need to support IE. I know WebKit is popular, but I'm restricted to using IE until a WebKit browser is available on Windows Phone 7.
I have a piece of text that I want to animate horizontally in and out. I don't want to measure it beforehand due to internationalization concerns. Ideally, I would like to achieve something like this:
<span id="parent" style="width: 50% of child's size">
<span id="child">Hello, cruel world</span>
</span>
And I want it to appear as:
Hello, cru
Is there any way to make this happen?