Bonjour à tous,
J'ai découvert le plugin jQuery-Image-Gallery (https://github.com/blueimp/jQuery-Image-Gallery).
Je le trouve très sympa mais pour le moment il est en version de démo et il charge des photos sur Flicker.
Voici le code:

$.ajax({
url: 'http://api.flickr.com/services/rest/',
data: {
format: 'json',
method: 'flickr.interestingness.getList',
api_key: '7617adae70159d09ba78cfec73c13be3'
},
dataType: 'jsonp',
jsonp: 'jsoncallback'
}).done(function (data) {
var gallery = $('#gallery'),
url;
$.each(data.photos.photo, function (index, photo) {
url = 'http://farm' + photo.farm + '.static.flickr.com/' +
photo.server + '/' + photo.id + '_' + photo.secret;
$('<a rel="gallery"/>')
.append($('<img>').prop('src', url + '_s.jpg'))
.prop('href', url + '_b.jpg')
.prop('title', photo.title)
.appendTo(gallery);
});
});

Je souhaiterai le modifier pour que le plugin aille chercher les photos dans un répertoire en local (genre /photos) et ce toutes les 30s
J'ai essayer différente technique mais je n'y arrive pas.
Si quelqu'un pouvais m'aider ce serai super.
En vous remerciant