Applets werden häufig für Animationen oder Special-Effekts auf dem Client benutzt. Wollen oder können Sie keine Applets einsetzen, können Sie Animationen auch mit Server Push oder mit Client Pull realisieren.
Content-type: multipart/x-mixed-replace;boundary=sep --sep Content-type: image/gif [Hier Bild 1] --sep Content-type: image/gif [Hier Bild 2] --sep: Content-type: image/gif [Hier Bild 3] --sep--
# Als Perl-Programm (Teil von HTTP) print "Content-type: text/html\n"; print "Refresh: 3"; print "; URL=http://your.host/new-document.html\n\n";Es geht auch innerhalb von HTML-Dokumenten:
<html>
<head>
<title> Irgend ein Titel </title>
<meta http-equiv="Refresh"
content="3; URL=http://your.host/new-doc.html">
</head>
[...]
Vorherige Seite, Nächste Seite, Index, Hauptindex.