Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
What Is an Animated Image
What Is an Animated Image? - XHTML 1.0 Tutorials - Understanding Inline Images and Image Maps
✍: FYIcenter.com
An animated image is a special image file saved in animated GIF format. When an animated image is displayed in a browser window, multiple image frames will be displayed in sequence to form a simple animation.
Here is a tutorial example with a server-side image map:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Animated GIF Image</title> </head> <body> <h4>Animated GIF Image</h4> <p style="background-color: #eeeeee; padding: 8px;"> Are you getting lots of emails these days? <img src="/lots_of_email.gif"" alt="Lots of email"/> I am.</p> </body> </html>
If you save the above document as animated_image.html, download this
animated GIF image file and view it with Internet Explorer,
you will see an animated image embedded inline in a text paragraph as shown below:
2007-05-12, 4706👍, 0💬
Popular Posts:
Do events have return type ? No, events do not have return type.
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...
What is NullPointerException and how to handle it? When an object is not initialized, the default va...
What will be printed as the result of the operation below: main() { int x=20,y=35; x=y++ + x++; y= +...
Can you explain why your project needed XML? Remember XML was meant to exchange data between two ent...