Amigos, como hacer un banner rotatorio parecido a este ejemplo?
http://www.idealistconsulting.com
Porfa alguien que me ayude en esto, encontré uno en el FAQ pero no me sale igual a este.
gracias
| |||
banner rotatorio Amigos, como hacer un banner rotatorio parecido a este ejemplo? http://www.idealistconsulting.com Porfa alguien que me ayude en esto, encontré uno en el FAQ pero no me sale igual a este. gracias |
| |||
Respuesta: banner rotatorio encontre esto pero solo me muestra las primeras dos imagenes, como hago para que me muestre las 4??
Código:
<script> // Rotador de banner's . Carlitos. [email protected] var ban = new Array() var enl = new Array() var indice = 0 ban[0] = new Image() ban[0].src = "mdw.gif" enl[0] = "http://www.maestrosdelweb.com" ban[1] = new Image() ban[1].src = "faq.gif" clara[1] = "http://www.faqsdelweb.com" ban[2] = new Image() ban[2].src = "script.gif" enl[2] = "http://www.webtutorial.com.ar/scriptmaster/" ban[3] = new Image() ban[3].src = "webest.gif" enl[3] = "http://www.webestilo.com" function rota() { if (indice == ban.length) indice = 0 if (document.images) { document.images.fotico.src = ban[indice].src } else { document.getElementById('fotico').src=ban[indice].src } indice++ setTimeout('rota()',2000) } function vete() { window.open(enl[indice-1]) } </script> <body onload=rota()> <img src="" id="fotico" onclick="vete()"> |
| ||||
Respuesta: banner rotatorio Hola Esto es a groso modo
Código javascript:
Ver original
Código html:
Ver original PD: Si necesitas involucra una bd, dilo, tengo otro ejemplo en el que se usa bd Suerte
__________________ Los formularios se envían/validan con un botón Submit <input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" /> |
| |||
Respuesta: banner rotatorio Muchisimas y gracias por adelantarte, creo que si me interesaría mucho lo de la bd. Pero solo sé sacar los datos de una bd con php no con javascript. Alguna sugerencia?? |
| ||||
Respuesta: banner rotatorio Aquí tienes Cita: Suerte <% Dim Imagen, Url, Texto, i, j Dim ristra_img, ristra_url, ristra_texto Imagen = 0 Url = 1 Texto = 2 SQL ="SELECT Imagen, Url, Texto FROM RotadorBanner" set rs = oConn.Execute(SQL) registros = rs.getrows() rs.Close Set rs = Nothing oConn.Close Set oConn = Nothing ristra_img = "" ristra_url = "" ristra_texto = "" For i = 0 to UBound(registros,2) ristra_img = ristra_img & "'" & registros(Imagen,i) &"'," ristra_url = ristra_url & "'" & registros(Url,i) &"'," ristra_texto = ristra_texto & "'" & registros(Texto,i) &"'," Next 'i %> <html> <head> <title>Rotador de publicidad</title> <script type="text/javaScript"> var publicidad = [<%=Left(ristra_img,Len(ristra_img)-1)%>]; var direccion = [<%=Left(ristra_url,Len(ristra_url)-1)%>]; var texto = [<%=Left(ristra_texto,Len(ristra_texto)-1)%>]; var contador = 0; var url = ""; function RotarPublicidad(){ if(contador > 4) contador = 0; document.getElementById("publicidad").innerHTML = "<img src="+publicidad[contador]+" width='62px' height='12px' title="+texto[contador]+" border='0px' />" url = direccion[contador]; document.getElementById("texto").innerHTML = texto[contador]; document.getElementById("publicidad_peq_4").style. background="#FFFFFF"; document.getElementById("publicidad_peq_"+contador ).style.background="#FF0000"; if (contador >= 1) document.getElementById("publicidad_peq_"+(contado r-1)).style.background="#FFFFFF"; contador++; } timer = setInterval("RotarPublicidad()", 2000); window.onload = RotarPublicidad; </script> </HEAD> <body> <a href="#" onClick="window.open(url,'Ventana');"> <div id="publicidad"></div> </a> <div id="texto"></div> <table border="1"> <tr> <% For j = 0 to UBound(registros,2) %> <td id="publicidad_peq_<%=j%>"> <img src="<%=registros(Imagen,j)%>" /> </td> <% Next 'j %> </tr> </table> </body> </html>
__________________ Los formularios se envían/validan con un botón Submit <input type="submit" value="Enviar" style="background-color:#0B5795; font:bold 10px verdana; color:#FFF;" /> |