Results 1 to 3 of 3

Thread: Moving images on mouseover?

  1. #1
    Join Date
    Jul 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Moving images on mouseover?

    Hi:
    I'm a java script newbie and this my first post. Would anyone know where I might find a script that could do the following? I want to make an image move on mouseover. I want to be able to make the image move to the right one space equivalent to its size . Then when I mouseover its new location I want the image to move back to its origional position. I want this back and forth positioning to be repeatable. I want the image to move instantly as soon as the mouse touches it.
    I have seen this effect somewhere before. I'm hoping someone can steer me in the right direction.
    This is a great forum.
    Thanks

  2. #2
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    Code:
    <script type="text/javascript">
    function switchPos(obj) {
    	if(obj.style.left != obj.style.width) {
    		obj.style.left = obj.style.width;
    	} else {
    		obj.style.left = '0pt';
    	}
    }
    </script>
    
    <img
    src="image.jpg"
    style="position:relative; left:0; width:100px;"
    onmouseover="switchPos(this);"
    />
    Change the values in green to those appropriate for your image. You don't need to copy the script for multiple images, just the <img> tag.
    Last edited by Twey; 07-29-2005 at 09:47 AM.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

  3. #3
    Join Date
    Jul 2005
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Twey;

    Thanks a million. Works like a charm. Made my day.

    speedytina

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •