[jQuery] Re: Help finding this script

2008-07-04 Thread spicyj

You probably want to use the hover event to replace a photo and a
block of text on your page.

What have you tried? Can you put up a simple test page for us to look
at?

Thanks!
~spicyj


[jQuery] Re: Help finding this script

2008-07-04 Thread Kevin Pepperman
The effects on this page are done with Adobe Flash.

I am not sure how you would do that with jQuery. But I will bet it could be
done to some extent.

On Fri, Jul 4, 2008 at 2:32 PM, Pedro Correia [EMAIL PROTECTED] wrote:


 Greetings!


 I'm trying to find some jquery plugin like on this webpage
 http://w1.siemens.com/entry/cc/en/

 However I don't know that effect name, so I really don't know how to
 search :)

 For instance you have some links like: Drive Technologies, Automation
 Technologies, Solutions for Industries, etc; when onmouseover the
 header changes to other picture and changes the header text also, and
 when you click on those links you see an animation too.

 Can anyone help me finding this plugin (if jquery has something like
 that, of course :))


 Best Regards!




-- 
Simone de Beauvoir  - To catch a husband is an art; to hold him is a job.


[jQuery] Re: Help finding this script

2008-07-04 Thread [EMAIL PROTECTED]

You use an 'onmouseover=()' event to change the image in a specified
div.

e.g

function changeImage(image_url){

  $(#image_container).empty();
  $(#image_container).append('img src=' + image_url + ' /');

}

This function just swaps the images in the image container.

On Jul 4, 9:48 pm, Kevin Pepperman [EMAIL PROTECTED] wrote:
 The effects on this page are done with Adobe Flash.

 I am not sure how you would do that with jQuery. But I will bet it could be
 done to some extent.



 On Fri, Jul 4, 2008 at 2:32 PM, Pedro Correia [EMAIL PROTECTED] wrote:

  Greetings!

  I'm trying to find some jquery plugin like on this webpage
 http://w1.siemens.com/entry/cc/en/

  However I don't know that effect name, so I really don't know how to
  search :)

  For instance you have some links like: Drive Technologies, Automation
  Technologies, Solutions for Industries, etc; when onmouseover the
  header changes to other picture and changes the header text also, and
  when you click on those links you see an animation too.

  Can anyone help me finding this plugin (if jquery has something like
  that, of course :))

  Best Regards!

 --
 Simone de Beauvoir  - To catch a husband is an art; to hold him is a job.