Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/04/2010, 00:39
bambanx
 
Fecha de Ingreso: agosto-2006
Mensajes: 113
Antigüedad: 17 años, 8 meses
Puntos: 1
Respuesta: problema entre lightbox y fade de imagenes

No me funciona, solo anda el fade de imagenes pero no la galeria, estoy tratando esto ahora pero tampoco ,solo kiero tener el fade de imagenes arriba y una galeri tipo lightbox abajo , si alguien lo sabe ayuda pls lo necesito urgente .
Saludos y gracias

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">


<head>
<title>SOLID ADVENTURE</title>

<link rel="stylesheet" type="text/css" media="screen" href="css/standard.css" />
<link rel="stylesheet" type="text/css" media="screen" href="css/colorbox.css" />

<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.colorbox-min.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.2.74.js"></script>
<script type="text/javascript">

$(document).ready(function() {
$('.slideshow').cycle({
fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
});
});

$("a[rel='example1']").colorbox();
$("a[rel='example2']").colorbox({transition:"fade"});
$("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});
$("a[rel='example4']").colorbox({slideshow:true});
$(".example5").colorbox();
$(".example6").colorbox({iframe:true, innerWidth:425, innerHeight:344});
$(".example7").colorbox({width:"80%", height:"80%", iframe:true});
$(".example8").colorbox({width:"50%", inline:true, href:"#inline_example1"});
$(".example9").colorbox({
onOpen:function(){ alert('onOpen: colorbox is about to open'); },
onLoad:function(){ alert('onLoad: colorbox has started to load the targeted content'); },
onComplete:function(){ alert('onComplete: colorbox has displayed the loaded content'); },
onCleanup:function(){ alert('onCleanup: colorbox has begun the close process'); },
onClosed:function(){ alert('onClosed: colorbox has completely closed'); }
});

//Example of preserving a JavaScript event for inline calls.
$("#click").click(function(){
$('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
return false;
});

</script>




</head>
<body>
<div id="header">
<div id="flashcontent">
<div class="slideshow">
<img src="images/banner5.jpg" width="100%" height="350" />
<img src="images/banner3.jpg" width="100%" height="350" />
<img src="images/banner2.jpg" width="100%" height="350" />
<img src="images/banner4.jpg" width="100%" height="350" />
<img src="images/banner.jpg" width="100%" height="350" />
</div>

<div id="footer">

<a href="images/1.jpg" rel="example4" title="Me and my grandfather on the Ohoopee.">Grouped Photo 1</a>



</div>