Bonjour !
Habituellement, mes images s'adaptent à mes div, ici non.
Je voudrais savoir si j'ai un problème dans mon code, si c'est à cause de la balise marquee ou s'il existe une solution pour redimensionner mon image.
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12 <div id="gifaccueil"> <a target="_blank" href="artistes.html" title="Imade defilante"><marquee id="id1"direction="up" scrollamount="3" height="100%" width="100%"><span onmouseover="getElementById('id1').stop();" onmouseout="getElementById('id1').start();"> <!--images ici--> <?php $recupdef = $bdd->prepare("SELECT lien_photo FROM photos WHERE id_photo=1"); $recupdef->execute(); $result = $recupdef->fetch(PDO::FETCH_ASSOC); $imgdef = (string)$result["lien_photo"]; echo '<img src="' .$imgdef. '" height="100%" widht="100%" />'; ?> </marquee></a> </div>
Partager