Probleme d'image sur mon site

zouloo -  
 zouloo -
Bonjour, j'ai fait le tour des post sur le site et j'ai trouvé aucunes reponses a mon probleme.

j'ai un site perso avec une gallerie photos, en local cette gallerie photos marche trés bien mais quand je la met en ligne on voit pas les photo il y a des forme géométrique dans un cadre c'est tout , j'ai bien verifier tous les chemins et tout me semble correct...

j'explique le principe de ma gallerie photos, les miniatures a gauche quand on clique dessus la grande s'affiche a droite
( les boutons next et previous ne sont pas opérationnel encore )

j'ai essayer tout les chemins possible rien a faire
aidez moi s'il vous plait

j'utilise hapedit pour programmer et ftpexpert3 pour transferer sur mon serveur
j'heberge chez multimania.

http://membres.lycos.fr/snowersfamily/photos.html <<== l'adresse de ma gallerie

[MON CODE]
<html>
<head>
<script type="text/javascript">

var current = 0;
var width = 4;
var max = 4;
var prefixe = "";

function previous(nb) {
showWindow(false);
current = current - nb;
if (current < 0) {
current = 0;
}
showWindow(true);
}

function next(nb) {
showWindow(false);
current = current + nb;
if (current > (max - width)) {
current = max - width;
}
showWindow(true);
}

function showWindow(show) {
for(i = current ; i < current + width ; i++) {
el = document.getElementById(prefixe+i);
if (el) {
el.style.display = show?'inline':'none';
}
}
}
function changeImage(filename)
{
document.mainimage.src = filename;
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Document sans nom</title>
</head>
<body>
<a href="javascript:previous(2)">previous</a>
<a id="mini_0" href="javascript:changeImage('gallerie/01.jpg')"><img src="./gallerie/01.jpg" align="top" id="image1" width="100" height="100"></a>
<a id="mini_1" href="javascript:changeImage('gallerie/02.jpg')"><img src="./gallerie/02.jpg" align="top" id="image2" width="100" height="100"></a>
<a id="mini_2" href="javascript:changeImage('gallerie/03.jpg')"><img src="./gallerie/03.jpg" align="top" id="image3" width="100" height="100" ></a>
<a id="mini_3" href="javascript:changeImage('gallerie/04.jpg')"><img src="./gallerie/04.jpg" align="top" id="image4" width="100" height="100"></a>
<a id="mini_4" href="javascript:changeImage('gallerie/05.jpg')"><img src="./gallerie/05.jpg" align="top" id="image5" width="100" height="100" ></a>
<a href="javascript:next(2)">next</a>
<img name="mainimage" src="Bilder/Portraits/grosse Bilder/maedchen1.jpg"></div>
</body>
</html>
A voir également:

1 réponse

zouloo
 
je précise également que le script et un script télécharger sur internet
0