I am currently writing a jQuery plugin to create / manage CSS transitions, and I found this strange behavior with transition-duration.

Apparently, while a transition is running, any changes to the duration property are ignored unless the properties being transitioned receive a different value. The duration itself does not cause the transition to change.

Following is some code which shows an example of this, and below are some links to jsFiddle to give you a better idea of the transition behavior I am trying to achieve.

    /* starting transition */
    .t1 {
        -webkit-transition-duration: 5s;
        -webkit-transition-property: width;
        width: 500px;
    }

    /* during the above, this will do nothing */
    .t2 {
        -webkit-transition-duration: 200ms;
        -webkit-transition-property: width;
        width: 500px;
    }

    /* but this will override the transition as expected */
    .t3 {
        -webkit-transition-duration: 200ms;
        -webkit-transition-property: width;
        width: 501px; /* 1 pixel added */
    }

Any ideas on how to force the transition to accept the updated duration?

UPDATE

It looks like this behavior is defined in the spec, but I am still open to a workaround if anyone has one.

(From www.w3.org/TR/css3-transitions/#starting)

Once the transition of a property has started, it must continue running based on the original timing function, duration, and delay, even if the ‘transition-timing-function’, ‘transition-duration’, or ‘transition-delay’ property changes before the transition is complete.

link|improve this question
probably just a webkit bug – ariel May 18 '11 at 6:01
feedback

1 Answer

just tested your first link with Chrome and Safari and it works fine, just like the jQuery example :)

link|improve this answer
Yeah working fine for me too. – anothershrubery May 18 '11 at 8:14
Just to confirm, it's the second click on the CSS example that is getting ignored. – danro May 19 '11 at 2:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.