24/05/2005, 06:57
|
| | Fecha de Ingreso: marzo-2005
Mensajes: 189
Antigüedad: 19 años, 8 meses Puntos: 0 | |
script scroll Me temo que sigo sin entenderlo. El archivo external.html ¿deberia quedar asi? <html>
<body bgcolor="#FFFFCC">
<div id="datacontainer" style="position:absolute;left:0;top:10;width:100%" onMouseover="scrollspeed=0" onMouseout="scrollspeed=cache">
<!-- ADD YOUR SCROLLER COMMENT INSIDE HERE--------------------->
fdxgfd
<!-- END SCROLLER CONTENT---------------------------------------->
<div>
<script language="JavaScript1.2">
//<iframe> script by Dynamicdrive.com
//Specify speed of scroll. Larger=faster (ie: 5)
var scrollspeed=cache=2
function initialize(){
marqueeheight=document.all? parent.document.all.datamain.height : parent.document.getElementById("datamain").getAttr ibute("height")
dataobj=document.all? document.all.datacontainer : document.getElementById("datacontainer")
dataobj.style.top=5
thelength=dataobj.offsetHeight
scrolltest()
}
function scrolltest(){
dataobj.style.top=parseInt(dataobj.style.top)-scrollspeed
if (parseInt(dataobj.style.top)<thelength*(-1))
dataobj.style.top=5
setTimeout("scrolltest()",50)
}
window.onload=initialize
</script>
</div></div></body>
De este modo cuando valido el formulario solo me añade la siguiente linea al final del archivo: <p><b>Fulanito dice</b> ¡HOLA!</p>
y no me lo muestra en ningún sitio, en el scroll solo aparece 'fdxgfd' que es lo que hay entre las lineas:
<!-- ADD YOUR SCROLLER COMMENT INSIDE HERE--------------------->
<!-- END SCROLLER CONTENT---------------------------------------->
¿como podria hacer para que la linea que genera el formulario aparezca entre estas lineas? |