It turns out my issue was due to height and width animation, not
font-size animation. I had height and width values set to 100% which
are then calculated values. Those were being animated. I fixed it by
being more specfic about what should be animated ... only
-webkit-transform in my case. Thanks to Ghodmode for that suggestions!

On Wed, Jun 29, 2011 at 4:29 PM, L. David Baron <dba...@dbaron.org> wrote:
> On Wednesday 2011-06-29 13:38 -0500, Mark Volkmann wrote:
>> I want to specify a transition for an element, but I only want it to
>> be used if a change is made to a property AFTER the page has loaded.
>> For example,
>>
>> #foo {
>> font-size: 24pt;
>> transition: all 1s linear;
>> -moz-transition all 1s linear;
>> -webkit-transition all 1s linear;
>> }
>>
>> I don't want the change to font-size from the default to 24pt to be animated.
>
> This should be the way transitions work normally.  Are you doing
> something that causes the style not to be applied until just after
> load?

-- 
R. Mark Volkmann
Object Computing, Inc.
______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to