Ich habe jetzt mal experimentiert. Es ist das folgende bei go-vista implementierte Skript, das die "Explosion" verursacht. Wenn man die go-vista-Seite auf die Festplatte speichert, das Skript entfernt und dann die html (mit allen anderen Scripts) öffnet, tritt der Effekt nicht auf. Ihr lieben Mods, achtet doch bitte darauf, was Ihr uns alles an Scripts, Leistungsfressern etc. zumuten wollt und dabei bitte nicht übertreiben!!
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// The fading delay (in ms.)
var smfFadeDelay = 5000;
// Fade from... what text color? To which background color?
var smfFadeFrom = {"r": 0, "g": 0, "b": 0}, smfFadeTo = {"r": 255, "g": 255, "b": 255};
// Surround each item with... anything special?
var smfFadeBefore = "<b>", smfFadeAfter = "</b>";
var foreColor, backEl, backColor;
if (typeof(document.getElementById('smfFadeScroller').currentStyle) != "undefined")
{
foreColor = document.getElementById('smfFadeScroller').currentStyle.color.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};
backEl = document.getElementById('smfFadeScroller');
while (backEl.currentStyle.backgroundColor == "transparent" && typeof(backEl.parentNode) != "undefined")
backEl = backEl.parentNode;
backColor = backEl.currentStyle.backgroundColor.match(/#([\da-f][\da-f])([\da-f][\da-f])([\da-f][\da-f])/);
smfFadeTo = {"r": eval("0x" + backColor[1]), "g": eval("0x" + backColor[2]), "b": eval("0x" + backColor[3])};
}
else if (typeof(window.opera) == "undefined" && typeof(document.defaultView) != "undefined")
{
foreColor = document.defaultView.getComputedStyle(document.getElementById('smfFadeScroller'), null).color.match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeFrom = {"r": parseInt(foreColor[1]), "g": parseInt(foreColor[2]), "b": parseInt(foreColor[3])};
backEl = document.getElementById('smfFadeScroller');
while (document.defaultView.getComputedStyle(backEl, null).backgroundColor == "transparent" && typeof(backEl.parentNode) != "undefined" && typeof(backEl.parentNode.tagName) != "undefined")
backEl = backEl.parentNode;
backColor = document.defaultView.getComputedStyle(backEl, null).backgroundColor.match(/rgb\((\d+), (\d+), (\d+)\)/);
smfFadeTo = {"r": parseInt(backColor[1]), "g": parseInt(backColor[2]), "b": parseInt(backColor[3])};
}
// List all the lines of the news for display.
var smfFadeContent = new Array(
"<a hre" + "f=\"http:\/\/partners.webmasterplan.com\/click.asp?ref=167894&site=4260&type=b82&bnb=82&subid=govista\" target=\"_blank\"><img src=\"http:\/\/banners.webmasterplan.com\/view.asp?ref=167894&site=4260&b=82\" border=\"0\" alt=\"softwareload - Ihr Download-Shop für Software\" width=\"468\" height=\"60\"\/><\/a>",
"<a hre" + "f=\"http:\/\/partners.webmasterplan.com\/click.asp?ref=167894&site=4239&type=b22&bnb=22&subid=govista\" target=\"_blank\"><img src=\"http:\/\/banners.webmasterplan.com\/view.asp?ref=167894&site=4239&b=22\" border=\"0\" alt=\"Kaspersky Lab\" width=\"468\" height=\"60\"\/><\/a>",
"<a hre" + "f=\"http:\/\/partners.webmasterplan.com\/click.asp?ref=167894&site=2941&type=b1&bnb=1&subid=govista\" target=\"_blank\"><img src=\"http:\/\/banners.webmasterplan.com\/view.asp?ref=167894&site=2941&b=1\" border=\"0\" alt=\"1&1 DSL\" width=\"468\" height=\"60\"\/><\/a>"
);
// ]]></script>