- Home
- Categorie
- Coding e Sistemistica
- Javascript & Framework
- problemi con js e firefox
-
problemi con js e firefox
Ho scitto il seguente codice per ottenere un di che scorre orizzontalmene. Funziona bene con IE6 IE7 opera ma firefox 2 sposta il div la prima volta per poi tornare alla posizione iniziale.
Sapete dirmi dov'è il problema?Grazie
[PHP]
<script type="text/javascript">
<!--
var sposta=15;
function change_img() {
sposta -=1;
document.getElementById('marchi_scroll2').style.left = sposta;
//alert(sposta);
}function tempo() {
setInterval("change_img()", 50);
}//-->
</script>
</head>
<body onload="tempo();">[/PHP]
-
la soluzione è
<script type="text/javascript">
<!--
var sposta=15;
function change_img() {
sposta -=1;
document.getElementById('marchi_scroll2').style.left = sposta+"px";
//alert(sposta);
}function tempo() {
setInterval("change_img()", 50);
}//-->
</script>
</head>
<body onload="tempo();">