Hi Michael,

I think this is just a matter of setting the image's CSS properties properly. Instead of using a "top" property, use "bottom":

img.someclass {
  position: absolute;
  bottom: 0;
  left: 0;
}

that should do it.

--Karl
_________________
Karl Swedberg
www.englishrules.com
www.learningjquery.com



On Apr 7, 2008, at 11:02 AM, Michael Price wrote:


Hi all,
Got an image absolutely positioned inside a relatively positioned DIV. When I mouseover it, it stretches via jQ's built in animation functions to a wider, taller version.

Awful ASCII art coming up:

------------------> ON MOUSE OVER, EXPANDS OUTWARD
|    |
| XX |
|    |
------
|
|
|
v
ON MOUSE OVER, EXPAND DOWNWARD

So it's going from the top left corner. Is it possible to make the animation run from the BOTTOM left corner?

LIKE THIS?
^
|
|
|
------
|    |
| XX |
|    |
------------------> ON MOUSE OVER, EXPANDS OUTWARD

All help gratefully received :)

Regards,
Michael Price


Reply via email to