Re: [css-d] CSS3 Transitions

2013-05-13 Thread Barney Carroll
Maybe you could use the 'left' property. Generally trial and error is incredibly easy with transitions: set the element to transition every property: element { transition: .3s; } Then try changing its properties on class or :hover / :focus state change, or modify its properties directly with

Re: [css-d] CSS3 Transitions

2013-05-13 Thread Pi Dizayn
Define expanding left. On Tue, Apr 23, 2013 at 1:13 PM, Anton Steiner wrote: > Hello > CSS3 transitions are very amazing and i would try it for a > search-bar. But the bar shoud expand to left. Is this possible with > transitions? If found no solution to do so. > > Mny tx > Anton > > __

[css-d] CSS3 Transitions

2013-04-23 Thread Anton Steiner
Hello CSS3 transitions are very amazing and i would try it for a search-bar. But the bar shoud expand to left. Is this possible with transitions? If found no solution to do so. Mny tx Anton __ css-discuss [css-d@lists.css-discuss

Re: [css-d] CSS3 transitions only after load

2011-06-29 Thread Mark Volkmann
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 t

Re: [css-d] CSS3 transitions only after load

2011-06-29 Thread L. David Baron
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

Re: [css-d] CSS3 transitions only after load

2011-06-29 Thread David Hucklesby
On 6/29/11 11:38 AM, 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 al

[css-d] CSS3 transitions only after load

2011-06-29 Thread Mark Volkmann
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 f