Tools, FAQ, Tutorials:
Animated Images in HTML
What Is an Animated Image?
✍: 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:
⇒ Server-Side Image Maps in HTML
⇐ Floating an Image to the Right Side in HTML
2017-03-22, ∼1961🔥, 0💬
Popular Posts:
FYIcenter.com Online Tools: FYIcenter JSON Validator and Formatter FYIcenter JSON to XML Converter F...
Tools, FAQ, Tutorials: JSON Validator JSON-XML Converter XML-JSON Converter JSON FAQ/Tutorials Pytho...
How to convert a JSON text string to an XML document with PHP language? Currently, there is no built...
How to login to Azure API Management Publisher Dashboard? If you have given access permission to an ...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...