benny
1
Ni
Verificación en dos pasos activada
Suscripción a IA
gente, estoy necesitando un script simple en lo posible sin mucha ciencia que me permita rotar banners, y anuncios de texto tipo adsense alguno conoce algo?
gente, estoy necesitando un script simple en lo posible sin mucha ciencia que me permita rotar banners, y anuncios de texto tipo adsense alguno conoce algo?
<script language="JavaScript">
<!--
var cuantosbanners = 3 ;
var ahora = new Date()
var segundos = ahora.getSeconds()
var banner = segundos % cuantosbanners;
banner +=1;
if (banner==1) {
texto=" Entra en la web de banner1 ";
url=" http://www.banner1.com ";
alt=" Texto alternativo1 ";
imagen=" imagenes/banner1.gif ";
width=" 468 ";
height=" 60 ";
}
if (banner==2) {
texto=" Entra en la web de banner2 ";
url=" http://www.banner2.com ";
alt=" Texto alternativo2 ";
imagen=" imagenes/banner2.gif ";
width=" 468 ";
height=" 60 ";
}
if (banner==3) {
texto=" Entra en la web de banner3 ";
url=" http://www.banner3.com ";
alt=" Texto alternativo3 ";
imagen=" imagenes/banner3.gif ";
width=" 468 ";
height=" 60 ";
}
document.write('<center>');
document.write('<a href="' + url + '" target="_blank">');
document.write('<img src="' + imagen + '" width=')
document.write( width + ' height=' + height + ' ');
document.write('alt="' + alt + '" border=0><br>');
document.write('<small>' + texto + '</small></a>');
document.write('</center>');
//-->
</script>
oskar, te agradezco, pero por loque veo eso es solo para banners, mi idea es hacer un mix,
sobre lo de google, obviamente pase por ahi y aun sigo buscando algunas cosas, pero mi consulta era mas a una recomendacion de si alguien habia usado alguno.
saludos y gracias