Jump to content


Photo

Imagem Aleatoria Com Link


  • Faça o login para participar
14 replies to this topic

#1 R@mirez

R@mirez

    Normal

  • Usuários
  • 68 posts
  • Sexo:Não informado
  • Localidade:Curitiba - PR
  • Interesses:Web, Design, Animação, Arte, Tecnologia, Comunicação.

Posted 11/09/2003, 17:32

Daê pessoal!

Seguinte: tenho um script de imagem aleatória (ou rotatória), porém quero q cada foto venha acompanhada de um texto com link (link na foto)...

segue o código q estou usando:

<script Language="JavaScript">
hoje = new Date()
numero_de_imagens = 4
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "paisa.jpg"
}
if (numero == 1){
banner = "foto2.jpg"
}
if (numero == 2){
banner = "hummer.jpg"
}
if (numero == 3){
banner = "foto4.jpg"
}
document.write('<img src="' + banner + '" border=0>')
</script></td>


Valeeu!

#2 Kleber

Kleber

    Magavilha!

  • Visitantes
  • PipPipPip
  • 210 posts
  • Sexo:Não informado

Posted 12/09/2003, 01:13

Se eu entendi direito sua dúvida, não é tão difícil assim. Fiz um esqueminha aqui, baseado no teu exemplo:

<html>
<body>

<script Language="JavaScript">
hoje = new Date()
numero_de_imagens = 4
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "paisa.jpg"
}
if (numero == 1){
banner = "foto2.jpg"
}
if (numero == 2){
banner = "hummer.jpg"
}
if (numero == 3){
banner = "foto3.jpg"
}
texto = new Array("texto da imagem 1","texto da imagem 2","texto da imagem 3","texto da imagem 4");
pagina = new Array("http://www.wmonline.com.br", "http://www.uol.com.br", "http://www.bol.com.br", "http://www.aol.com.br");

document.write(texto[numero] + " <a href=" + pagina[numero] + "> <img src=" + banner + " border=0>")


</script>

</body>
</html>


Espero q seja isso q tu queria.

FLW pru C. B)
Nome: Kleber Anderson
E-mail: kleber.sylva@bol.com.br
MSN: kleber7777@hotmail.com

#3 Dinho Z.

Dinho Z.

    Rock'n'Roll !!! Yeah !!!

  • Usuários
  • 755 posts
  • Sexo:Não informado
  • Localidade:Santo André - SP

Posted 12/09/2003, 09:06

Utilizando o seu código faça as seguintes alterações:

<script Language="JavaScript">
hoje = new Date()
numero_de_imagens = 4
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "paisa.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 1){
banner = "foto2.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 2){
banner = "hummer.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 3){
banner = "foto4.jpg"
texto = "Texto"
link = "pag.htm"
}
document.write('<a href="' + link + '"><img src="' + banner + '" border=0><br>' + texto + '</a>') 
</script></td>

Veja se é isto...
Dinho

Ajude a proibir os "jabás" nas rádios brasileiras.
Mas, afinal, o que é o "jabá"?!? acesse Rock Brasil
Acesse Fórum SOS Designers
Coluna de JavaScript/CSS do Upmasters

#4 R@mirez

R@mirez

    Normal

  • Usuários
  • 68 posts
  • Sexo:Não informado
  • Localidade:Curitiba - PR
  • Interesses:Web, Design, Animação, Arte, Tecnologia, Comunicação.

Posted 12/09/2003, 11:31

Daê!!!

Massa galera!! Ambos deram certo! Veeeeeu!!!

Té mais!

#5 R@mirez

R@mirez

    Normal

  • Usuários
  • 68 posts
  • Sexo:Não informado
  • Localidade:Curitiba - PR
  • Interesses:Web, Design, Animação, Arte, Tecnologia, Comunicação.

Posted 12/09/2003, 11:41

Aê pessoal!

Agora surgiu outra dúvida, e se eu quiser q apareça um iframe ramdômico ,no lugar da foto? Colocaria o texto, a foto e o link nesses iframes... Daria pra fazer isso usando a mesma lógica?
Como ficaria?

Abraço,
Faloou!

#6 R@mirez

R@mirez

    Normal

  • Usuários
  • 68 posts
  • Sexo:Não informado
  • Localidade:Curitiba - PR
  • Interesses:Web, Design, Animação, Arte, Tecnologia, Comunicação.

Posted 12/09/2003, 14:48

Ei Dinho, gostei do teu código, mas como faço para os textos aparecerem ao lado e não e abaixo das fotos?



CODE
<script Language="JavaScript">
hoje = new Date()
numero_de_imagens = 4
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "paisa.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 1){
banner = "foto2.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 2){
banner = "hummer.jpg"
texto = "Texto"
link = "pag.htm"
}
if (numero == 3){
banner = "foto4.jpg"
texto = "Texto"
link = "pag.htm"
}
document.write('<a href="' + link + '"><img src="' + banner + '" border=0><br>' + texto + '</a>')
</script></td>


Veja se é isto...

--------------------
Dinho


#7 Dinho Z.

Dinho Z.

    Rock'n'Roll !!! Yeah !!!

  • Usuários
  • 755 posts
  • Sexo:Não informado
  • Localidade:Santo André - SP

Posted 14/09/2003, 10:11

Dentro do document.write, tire a tag <br>, assim...

document.write('<a href="' + link + '"><img src="' + banner + '" border=0>' + texto + '</a>')

Dinho

Ajude a proibir os "jabás" nas rádios brasileiras.
Mas, afinal, o que é o "jabá"?!? acesse Rock Brasil
Acesse Fórum SOS Designers
Coluna de JavaScript/CSS do Upmasters

#8 eduardo_

eduardo_

    Turista

  • Usuários
  • 56 posts
  • Sexo:Não informado
  • Localidade:São Paulo - SP

Posted 25/10/2005, 19:02

<script Language="JavaScript">
hoje = new Date()
numero_de_imagens = 6
segundos = hoje.getSeconds()
numero = segundos % numero_de_imagens
if (numero == 0){
banner = "img/layout/forumotep.gif"
link = "http://www.otepbrasil.com/forum"
}
if (numero == 1){
banner = "img/layout/mp3.gif"
link = "mp3.html"
}
if (numero == 2){
banner = "img/layout/videos.gif"
link = "videos.html"
}
if (numero == 3){
banner = "img/layout/letras.gif"
link = "letras.html"
}
if (numero == 4){
banner = "img/layout/tradu.gif"
link = "traducoes.html"
}
if (numero == 5){
banner = "img/layout/fotos.gif"
link = "fotos.html"
}
document.write('<a href="' + link + ' + "><img src="' + banner + '" border=0><br>' + '</a>')

</script>


Tá funcionando perfeitamente esse script, porém gostaria de acrescentar "target" das links. E se possível um map dos liks também.

Alguém poderia me ajudar?

Edição feita por: eduardo_, 25/10/2005, 19:15.


#9 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 16/09/2017, 05:17

Presentazione Levitra cialis Direct Zentel 400mg Visa No Prior Script Keflex Erythromycin Prostate Dog Tomar Cialis Y Alcohol Order Legally Bentyl Medicine Low Price Shop Cash Delivery viagra cialis Soft Tabs Kamagra
Direct Progesterone Menopause Find Best Website Shop Online cialis Levitra Erezione
Dapoxetine Purchase
Mejor Cialis 10 O 20 Mg <a href=http://cialtobuy.com>buy cialis</a> Tamsulosin Hcl 0.4 Mg Cap Canada

#10 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 03/10/2017, 08:40

Senator tells of alleged threat by House Speaker if Senate approves ethics reform One Providence building two new restaurants A pretzel pub and Chinese steamed buns Feb.As long as you have a steady employment with proof of income we can work out a payment plan that is within your reach. To qualify for a cash payday loan minimum net pay requirements will apply and may vary by province. best loans Identify potential items for sale. africa MPs slam funding plans for right to buy MPs slam funding plans for right to buy scotland Nils Pratley Deutsche isnt the only drama in bankings new negativeyield world clubs love sex games Sainsburys axes twoforone offers amid consumer spending concerns all contributors Woman falls ft on to bed from upper floor of John Lewis store US interest rates Yellen hints further rises on hold food sport wales Larry Elliott There wasnt much Yellen could say that wouldnt have spooked the markets Market turmoil Wall Street falls negative rates not off the table says Yellen law economics Saved for later opinion borrowing Consumer affairs Whether it is playing the ukulele visiting an art gallery or doing a spot of weightlifting get some headspace away from work and reap the benefits Quiz Can you spot the best supermarket deal culture Boost your brainpower and do something different this February European president Matt Brittin told people are very angry over deal securedrop money science northern ireland cycling genius Quiz Can you spot the best supermarket deal Sainsburys axes twoforone offers amid consumer spending concerns browse all sections close Banks and building societies europe switch to the Australia edition Alternatively upgrade to a modern browser.
Norvasc Rapid Tab online pharmacy Achat Kamagra 100mg Propecia Original Viaga From India
Levitra Filmtabletten 20mg Free Ed Sample Pack cheap levitra for sale Generic Zithromax Tablet Viagra 100mg 30 Levaquin Mail Order

#11 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 03/10/2017, 11:40

Cod Levaquin Cheapeast With Free Shipping cheap viagra levitra cialis Nombre Droga Generica Viagra Amoxicillin Online Canada
Order Cialis Online In Canada Reviews Levitra Stuffy Nose viagra Best Price For Pfizer Viagra Cialis Levitra Insieme Canadian Pharmacy In Florida

#12 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 12/10/2017, 11:53

First Medicine Online Pharmacy Shop Amoxicillin Biotransformation online pharmacy Propecia 1.5 Keppra No Prescription Needed 500 Milligrams Keflex
Priligy Dapoxetina Comprar Purchase Cheap Cephalexin Without Prescription Comprar Cialis Soft buy viagra online Amoxicillin Out Of Date Ceallas And Viag For Sale

#13 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 29/10/2017, 15:18

Viagra Senza Ricetta Come Genuine Viagra Online gen health levitra Super Viagra Without Prescriptions
Generic Levitra Compare Price Viagra Duracion Efecto Viagra Generique Sur Le Net viagra Can Amoxicillin Cause Loss Of Appetite Cheapeast Generic Hydrochlorothiazide Secure Get Mastercard On Line Amoxicillin Feline Dosage
Effexor Xr India Price Zithromax Zithromax Prescription Cost viagra Cephalexin For A Canine Levitra No Rx

#14 Miguceamma

Miguceamma

    MiguPenjisse

  • Usuários
  • 13201 posts

Posted 29/10/2017, 20:17

Sildenafil Espana viagra Cialis In Deutschland Keflex Cat Bladder Infection
Generic Acticin Find No Doctors Consult Over Night generic cialis Zithromax Diarrhea Treatment

#15 RonsisM

RonsisM

    Super Veterano

  • Usuários
  • 15724 posts
  • Sexo:Masculino
  • Localidade:Plovdiv

Posted 15/11/2017, 12:25

Farmacia Viagra Generico Cytoxan Viagra Erfahrungen Kaufen viagra Antibiotics On Line Priority Delivery Cialis Forum Doctissimo Canadas Rx No Prescription Paypal
Cialis Venta Online cheap levitra Cheapeast Acticin Australia Cardiff Viagra Pillen Nebenwirkungen Viagra Generico En Espana Contrareembolso
Kamagra Beipackzettel Il Prezzo Di Kamagra online pharmacy Zithromax Dosage For Bronchitis




1 user(s) are reading this topic

0 membro(s), 1 visitante(s) e 0 membros anônimo(s)

IPB Skin By Virteq