Re: zoom image effect?

2005-06-22 Thread Klaus Major
Konichi-wa Nicolas-san, Hello List, I'm not sure if the zoom-like visual effect I'm after is easily done but, here goes. Basically, when a user enters an image with the mouse, that image will get larger, preferably gradually rather than instantly. And once the user exits the image, it'll retu

Re: zoom image effect?

2005-06-22 Thread Eric Chatonet
Hi Nicolas, On-the-Fly and not tested but should do the job :-) function MayIZoomOut pImage if the left of img pImage <= 0 then return false if the right of img pImage >= the width of this cd then return false if the top of img pImage <= 0 then return false if the bottom of img pImage >= the

zoom image effect?

2005-06-22 Thread Nicolas Cueto
Hello List, I'm not sure if the zoom-like visual effect I'm after is easily done but, here goes. Basically, when a user enters an image with the mouse, that image will get larger, preferably gradually rather than instantly. And once the user exits the image, it'll return to its original size