10/01/2012, 12:48
|
| | Fecha de Ingreso: enero-2012 Ubicación: Madrid
Mensajes: 3
Antigüedad: 12 años, 10 meses Puntos: 0 | |
Respuesta: Galeria de imagenes con Jquery Te pongo el código, muchas gracias.
Ara
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Documento sin título</title>
<script type="text/javascript" src="jquery/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="jquery/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery/onready.js"></script>
<script type="text/javascript" src="jquery/jquery.timers-1.2.js"></script>
<script type="text/javascript" src="jquery/jquery.easing.1.3.js"></script>
<script type="text/javascript" src="jquery/jquery.galleryview-3.0-dev.js"></script>
<link type="text/css" rel="stylesheet" href="css/jquery.galleryview-3.0-dev.css" />
<script>
$(function(){
$('#myGallery').galleryView();
});
</script>
</head>
<body>
<div class="contenedor">
<ul id="myGallery">
<li><img src="imagenes/temalibre/IMG_1653_m.jpg" alt="imagen 1" /></li>
<li><img src="imagenes/temalibre/_MG_8728_m.jpg" alt="imagen 2" /></li>
<li><img src="imagenes/temalibre/_MG_7067_m.jpg" alt="imagen 3" /></li>
</ul>
</div>
</body>
</html> |