How do I make auto zoom with jquery

501 views Asked by At

I need to animate some images with auto zoom effect in a space of time with jQuery. I can`t find a plugin to do that, then I think I got to do this by myself, any ideas to code that?

1

There are 1 answers

0
Brett On

I would change the height and width and have it transistion to the new pos and or size

#id_of_element {
-webkit-transition: all 1s ease;
-moz-transition: all 1s ease;
-o-transition: all 1s ease;
transition: all 1s ease;
}