<script type="text/javascript">
/*
##########################################################################################
# P91Fadeout V.0.9 by PA-S.de
##########################################################################################
# P91Fadeout V.0.9 by PA-S.de
# Copyright 2008 PA-S.de
# Dieser unsichtbare Verweis, darf nicht entfernt werden
##########################################################################################
*/
function P91Fadeout(id, geschwindigkeit) {
var fps = Math.round(geschwindigkeit / 100);
var tmp = 0;
for(i = 100; i >= 0; i--) {
setTimeout("P91Fadeout_fade('" + id + "'," + i + ")", (tmp * fps));
tmp++;
}
}
function P91Fadeout_fade(id, pas) {
var heurix = document.getElementById(id).style;
if(pas > 0) {
heurix.opacity = (pas / 100);
heurix.MozOpacity = (pas / 100);
heurix.KhtmlOpacity = (pas / 100);
heurix.filter = "alpha(opacity=" + pas + ")";
} else {
heurix.display = "none";
}
}
</script>
<script type="text/javascript">
// Erläuterung:
// window.setTimeout("P91Fadeout('DIV-ID', GESCHWINDIGKEIT_MILISEK)", TIMER_MILISEK);
window.setTimeout("P91Fadeout('box', 2000)", 5000);
</script>
<div id="box" style="width: 300px; background-color:#efefef; border: 1px solid #000000; padding: 10px; text-align:justify; color:#FF0000">
Diese Box blendet sich in 5 Sekunden aus und verschwindet :-D.
</div>
Quelle: http://www.pa-s.de