Búsqueda en el Foro:
Buscar


Autor Mensaje
Mensaje02-07-2012, 21:30 (UTC)    
Título del mensaje: Galeria flash porblema

tengo esta galeria flash pero quiero ke las imagenes al darles click te mandan a otro lado

Código:
<!-- www.cssplantillas.es.tl -->
<script type="text/javascript">
var photos=new Array()
var photoslink=new Array()
var which=0
photos[0]="URL IMAGEN 1"
photos[1]="URL IMAGEN 2"
photos[2]="URL IMAGEN 3"
photos[3]="URL IMAGEN 4"
photos[4]="URL IMAGEN 5"
var linkornot=0
photoslink[0]=""
photoslink[1]=""
photoslink[2]=""
photoslink[3]=""
photoslink[4]=""
var preloadedimages=new Array()
for (i=0;i<photos.length;i++){
preloadedimages[i]=new Image()
preloadedimages[i].src=photos[i]
}
function applyeffect(){
if (document.all && photoslider.filters){
photoslider.filters.revealTrans.Transition=Math.floor(Math.random()*23)
photoslider.filters.revealTrans.stop()
photoslider.filters.revealTrans.apply()
}
}
function playeffect(){
if (document.all && photoslider.filters)
photoslider.filters.revealTrans.play()
}
function keeptrack(){
window.status="Image "+(which+1)+" of "+photos.length
}
function backward(){
if (which>0){
which--
applyeffect()
document.images.photoslider.src=photos[which]
playeffect()
keeptrack()
}
}
function forward(){
if (which<photos.length-1){
which++
applyeffect()
document.images.photoslider.src=photos[which]
playeffect()
keeptrack()
}
}
function transport(){
window.location=photoslink[which]
}
</script>
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td width="100%" colspan="2" height="22"><center>
<script>
if (linkornot==1)
document.write('<a href="javascript:transport()">')
document.write('<img width="540" height="350" src="'+photos[0]+'" name="photoslider" style="filter:revealTrans(duration=2,transition=23)" border=0>')
if (linkornot==1)
document.write('</a>')
</script>
</center></td>
  </tr>
  <tr>
    <td width="50%" height="21"><p align="left"><a href="#" onClick="backward();return false">Anterior</a></td>
    <td width="50%" height="21"><p align="right"><a href="#" onClick="forward();return false">Siguiente</a></td>
  </tr>
</table>



e intentado ponerle este codigo pero no sale bien
<a href="URL IMAGEN GRANDE"
Mostrar mensajes anteriores:   


Powered by phpBB © 2001, 2005 phpBB Group