Hallo erstmal
kommen wir zu meinem ersten Problem hier
Ich möchte ein Bild auf meiner seite "Wandern" lassen.
Dazu habe ich eine zeitschaltung per javascript erstellt, welche
die position des bildes verändern soll.
Leider läuft es nicht und mich würde brennend interessieren warum ?
vielen dank schonmal ! :)
var id;
function load(id)
{
if(id == 1){
document.body.getElementById('pic').style.right="0px";
window.setTimeout('load(2)', 500);
}
if(id == 2){
document.body.getElementById('pic').style.right="-10px";
window.setTimeout('load(3)', 500);
}
if(id == 3){
document.body.getElementById('pic').style.right="-20px";
window.setTimeout('load(4)', 500);
}
if(id == 4){
document.body.getElementById('pic').style.right="-30px";
window.setTimeout('load(5)', 500);
}
if(id == 5){
document.body.getElementById('pic').style.right="-40px";
window.setTimeout('load(1)', 500);
}
}
</script>
------------------
<body onLoad="load(1)">
<img src="./txt.png" style="position:absolute;right:0;top:-40;z-index:1;" id="pic">
</body>
kommen wir zu meinem ersten Problem hier
Ich möchte ein Bild auf meiner seite "Wandern" lassen.
Dazu habe ich eine zeitschaltung per javascript erstellt, welche
die position des bildes verändern soll.
Leider läuft es nicht und mich würde brennend interessieren warum ?
vielen dank schonmal ! :)
var id;
function load(id)
{
if(id == 1){
document.body.getElementById('pic').style.right="0px";
window.setTimeout('load(2)', 500);
}
if(id == 2){
document.body.getElementById('pic').style.right="-10px";
window.setTimeout('load(3)', 500);
}
if(id == 3){
document.body.getElementById('pic').style.right="-20px";
window.setTimeout('load(4)', 500);
}
if(id == 4){
document.body.getElementById('pic').style.right="-30px";
window.setTimeout('load(5)', 500);
}
if(id == 5){
document.body.getElementById('pic').style.right="-40px";
window.setTimeout('load(1)', 500);
}
}
</script>
------------------
<body onLoad="load(1)">
<img src="./txt.png" style="position:absolute;right:0;top:-40;z-index:1;" id="pic">
</body>