I want to convert my CSS transition to Jquery
My CSS transition is this :
.classname {
width : 470px;
transition: all 2s ease 0s;
}
.classname:hover {
width : 700px;
}
this mean the CSS code , changes the width of element .
So, How can i do that with Jquery ?
jQuery to CSS. BTW, take a look at.animate().