Have to run code in IE9 and have problems with CSS3 transition.
Turned eyes to velocity js for this matter.
Have no clue to transform to velocity code.
Also I tried jquery css didn't work in IE9:
$('target').velocity();
How could I make this transition css3 to fit in to velocity parameter ?
transition:left 0.5s ease;
First, as we all known the transition CSS property support IE10+, you could check it from this article.
As for this issue, please check your JQuery selector, make sure you could find the Html element based on the element selector(instead of using class selector (such as : $(".target")) or id selector (such as: $("#target"))).
Then, you could try to use F12 developer tools to check whether the velocity reference load success, and whether there have some error.
From the velocity document, we could use the Easing option to set the easing types, use the Delay specify the delay option in milliseconds to insert a pause before an animation begins. More detail setting, please check the velocity document.
Here is a sample, you could refer to it:
CSS code:
The result as below: