11/09/2010, 20:23
|
| | | Fecha de Ingreso: junio-2010 Ubicación: Santiago, Chile.
Mensajes: 17
Antigüedad: 14 años, 4 meses Puntos: 0 | |
JQuery Slideshow, problema Hola a todos, estoy usando un script en JQuery para mostrar imágenes en el header pero tengo un problema con una parte del script y me gustaría que me ayudaran a corregirlo por favor.
me gustaría que me ayudaran a descifrar si está bien la sintaxis del script por favor y mi duda puntual es que no logo hacer funcionar la parte del
Código:
titleBar: { css: { height:"100px" } },
dejo el script a continuación, saludos!
Código:
$(function() {
$("#showcase").showcase({
css: { width: "940px", height: "300px" },
animation: { type:"fade", speed:"500", interval:"10000" },
images: [
{ url:"img/slideshow1.jpg",
description:" asdferwe." },
{ url:"img/slideshow2.jpg",
description:"just select a target and a list of images" },
{ url:"img/slideshow3.jpg",
description:"you can define your own ease function" }],
navigator: {
position: "top-right",
css: { padding:"0px",
margin: "1px 1px 0px 0px" },
showNumber: true,
titleBar: { css: { height:"100px" } },
item: {
css: { height:"16px", "line-height":"16px", width:"16px", "-moz-border-radius": "0px", "-webkit-border-radius": "0px",
backgroundColor: "#383838", borderColor:"#323232", margin: "0px", "text-align": "center", "vertical-align": "middle" },
cssHover: { backgroundColor: "#ababab", borderColor: "#ababab" },
cssSelected: { backgroundColor: "#dadada", borderColor: "#dadada" }
}
}
});
});
|