Results 1 to 2 of 2

Thread: Make Animated Images by JavaScript

  1. #1
    ponting77 is offline Senior Member
    Join Date
    Dec 2008
    Posts
    217
    Rep Power
    4

    Default Make Animated Images by JavaScript

    I want to create animated images in java script but I didn’t have much information about it. And I did not created any animated image using java script. So please help meto create Animated Images using JavaScript. SO provide me some information about it.

  2. #2
    cherish22 is offline Senior Member
    Join Date
    Dec 2008
    Posts
    209
    Rep Power
    4

    Default

    Code given below may help you to create animated image:

    HTML Code:
    <html><head>
    <script type="text/javascript">
    function mouseOver()
    {
    document.getElementById("b1").src ="hi.gif";
    }
    function mouseOut()
    {
    document.getElementById("b1").src ="welcome.gif";
    }
    </script></head>
    <body>
    <a href="http://www.techarena.com" target="_blank">
    <img border="0" alt="Visit TechArena!" src="welcome.gif" id="b1" onmouseover="mouseOver()" onmouseout="mouseOut()" /></a>
    </body> </html>

Similar Threads

  1. Animated Weather application
    By Harvey Lavan in forum Download Tools and Softwares
    Replies: 0
    Last Post: 07-26-2010, 07:07 PM
  2. Make energetic images by JavaScript
    By RodríguezBrown in forum Programming
    Replies: 0
    Last Post: 07-12-2010, 01:21 PM
  3. how can we shuffle images in javascript through array?
    By richynaughty in forum Software Jargons
    Replies: 0
    Last Post: 05-03-2010, 10:30 AM
  4. Making animated Gifs by MS GIF animator
    By WilsonMartin in forum Software Jargons
    Replies: 0
    Last Post: 01-18-2010, 02:05 PM
  5. Animated GIF
    By Fabian Siegfried in forum Software Jargons
    Replies: 0
    Last Post: 11-24-2009, 09:48 AM

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
  •  
SEO by SubmitEdge

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48