hallo zusammen,
ich hoffe ihr könnt mir helfen es geht bei mir um folgendes script:
<!-- ... Quelle Dummy ...
function bglayer(){}
// ... Ende Dummy ... -->
</script> <script
LANGUAGE="JavaScript1.2" TYPE="text/javascript">
<!-- ... Quelle Beispiel ...
// Browserabhaengige Informationen
var nn = (navigator.appName == "Netscape") ? true : false
// Bildinformationen
var imgURL = "clickhere.gif" [COLOR=crimson]<das ist das bild wo ich gerne ein link drauf hätte geht das? wäre euch sehr dankbar für eine antwort [/COLOR]
var imgWidth = 100
var imgHeight = 57
// Darstellungsinformationen
var imgStep = 50 // Zeitintervall in ms
var imgIntX = 200 // horizontales Intervall
var imgIntY = 450 // vertikales Intervall
// Statusinformationen
var imgIncX = 0
var imgIncY = 0
// Zentrieren des Hintergrundbilds
function bgstep()
{
var iWidth = (nn ? innerWidth : Number(document.body.clientWidth))
var iHeight = (nn ? innerHeight : Number(document.body.clientHeight))
with(nn ? document.Bild : Bild)
{
// Platz fuer die Darstellung?
if(imgWidth > iWidth ||
imgHeight > iHeight)
{
visibility = false
return
}
// Koordinatenberechnung
if(nn)
{
left = Math.floor((1 + Math.sin(imgIncX * 2 * Math.PI / imgIntX)) * ((innerWidth - imgWidth) / 2))
top = Math.floor((1 + Math.cos(imgIncY * 2 * Math.PI / imgIntY)) * ((innerHeight - imgHeight) / 2))
}
else
{
style.left = Math.floor((1 + Math.sin(imgIncX * 2 * Math.PI / imgIntX)) * ((iWidth - imgWidth) / 2))
style.top = Math.floor((1 + Math.cos(imgIncY * 2 * Math.PI / imgIntY)) * ((iHeight - imgHeight) / 2))
}
// Naechster Schritt
imgIncX++
imgIncY++
imgIncX %= imgIntX
imgIncY %= imgIntY
visibility = true
}
setTimeout("bgstep()", imgStep)
}
// Initialisierung der Darstellung
function bglayer()
{
var iWidth = (nn ? innerWidth : Number(document.body.clientWidth))
var iHeight = (nn ? innerHeight : Number(document.body.clientHeight))
with(nn ? document.Bild : Bild)
{
if(nn)
{
left = Math.floor((iWidth - imgWidth) / 2)
top = Math.floor(iHeight - imgHeight)
width = imgWidth
height = imgHeight
with(document)
{
open("text/html")
write("<IMG SRC=\"" + imgURL + "\" " +
"WIDTH=" + imgWidth + " " +
"HEIGHT=" + imgHeight + " ALT=\"\">")
close()
}
}
else
{
style.left = Math.floor((iWidth - imgWidth) / 2)
style.top = Math.floor(iHeight - imgHeight)
style.width = imgWidth
style.height = imgHeight
innerHTML = "<IMG SRC=\"" + imgURL + "\" " +
"WIDTH=" + imgWidth + " " +
"HEIGHT=" + imgHeight + " ALT=\"\">"
}
setTimeout("bgstep()", imgStep)
}
}
// -->
</script>
ich hoffe ihr könnt mir helfen es geht bei mir um folgendes script:
<!-- ... Quelle Dummy ...
function bglayer(){}
// ... Ende Dummy ... -->
</script> <script
LANGUAGE="JavaScript1.2" TYPE="text/javascript">
<!-- ... Quelle Beispiel ...
// Browserabhaengige Informationen
var nn = (navigator.appName == "Netscape") ? true : false
// Bildinformationen
var imgURL = "clickhere.gif" [COLOR=crimson]<das ist das bild wo ich gerne ein link drauf hätte geht das? wäre euch sehr dankbar für eine antwort [/COLOR]
var imgWidth = 100
var imgHeight = 57
// Darstellungsinformationen
var imgStep = 50 // Zeitintervall in ms
var imgIntX = 200 // horizontales Intervall
var imgIntY = 450 // vertikales Intervall
// Statusinformationen
var imgIncX = 0
var imgIncY = 0
// Zentrieren des Hintergrundbilds
function bgstep()
{
var iWidth = (nn ? innerWidth : Number(document.body.clientWidth))
var iHeight = (nn ? innerHeight : Number(document.body.clientHeight))
with(nn ? document.Bild : Bild)
{
// Platz fuer die Darstellung?
if(imgWidth > iWidth ||
imgHeight > iHeight)
{
visibility = false
return
}
// Koordinatenberechnung
if(nn)
{
left = Math.floor((1 + Math.sin(imgIncX * 2 * Math.PI / imgIntX)) * ((innerWidth - imgWidth) / 2))
top = Math.floor((1 + Math.cos(imgIncY * 2 * Math.PI / imgIntY)) * ((innerHeight - imgHeight) / 2))
}
else
{
style.left = Math.floor((1 + Math.sin(imgIncX * 2 * Math.PI / imgIntX)) * ((iWidth - imgWidth) / 2))
style.top = Math.floor((1 + Math.cos(imgIncY * 2 * Math.PI / imgIntY)) * ((iHeight - imgHeight) / 2))
}
// Naechster Schritt
imgIncX++
imgIncY++
imgIncX %= imgIntX
imgIncY %= imgIntY
visibility = true
}
setTimeout("bgstep()", imgStep)
}
// Initialisierung der Darstellung
function bglayer()
{
var iWidth = (nn ? innerWidth : Number(document.body.clientWidth))
var iHeight = (nn ? innerHeight : Number(document.body.clientHeight))
with(nn ? document.Bild : Bild)
{
if(nn)
{
left = Math.floor((iWidth - imgWidth) / 2)
top = Math.floor(iHeight - imgHeight)
width = imgWidth
height = imgHeight
with(document)
{
open("text/html")
write("<IMG SRC=\"" + imgURL + "\" " +
"WIDTH=" + imgWidth + " " +
"HEIGHT=" + imgHeight + " ALT=\"\">")
close()
}
}
else
{
style.left = Math.floor((iWidth - imgWidth) / 2)
style.top = Math.floor(iHeight - imgHeight)
style.width = imgWidth
style.height = imgHeight
innerHTML = "<IMG SRC=\"" + imgURL + "\" " +
"WIDTH=" + imgWidth + " " +
"HEIGHT=" + imgHeight + " ALT=\"\">"
}
setTimeout("bgstep()", imgStep)
}
}
// -->
</script>
Kommentar