Buenas tardes
Estoy haciendo una página usando librerias de Jquery http://pruebagonzalo.org.es/antino/
Supuestamente al principio deberían aparecer la siguiente imagen que tengo en mi servidor
http:pruebagonzalo.org.es/antino/img/17967350.jpg
El código - dentro del index - dónde hago referencia a la imágen es el siguiente
jQuery(function($){
$.supersized({
slideshow :1, // Slideshow on/off
autoplay :1, // Slideshow starts playing automatically
slide_interval : 5600, // Length between transitions
transition : 1, // 0-None, 1-Fade, 2-Slide Top, 3-Slide Right, 4-Slide Bottom, 5-Slide Left, 6-Carousel Right, 7-Carousel Left
transition_speed : 500, // Speed of transition
pause_hover :0, // Pause slideshow on hover
performance :1, // 0-Normal, 1-Hybrid speed/quality, 2-Optimizes image quality, 3-Optimizes transition speed // (Only works for Firefox/IE, not Webkit)
image_protect :1, // Disables image dragging and right click with Javascript
keyboard_nav : 1, // Keyboard navigation on/off
thumbnail_navigation : 1, // Thumbnail navigation
slides :[ // Slideshow Images
{image : 'http:pruebagonzalo.org.es/antino/img/17967350.jpg'},
{image : 'http:pruebagonzalo.org.es/antino/img/17967350.jpg'} ] });
$("#nexta").click(function(){
api.nextSlide();
});
$("#preva").click(function(){
api.prevSlide();
});
Muchas gracias chicso