Pages: 1
- Sujet précédent - QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement - Sujet suivant
#1 Wed 14 April 2021 17:06
- sporito
- Participant actif
- Date d'inscription: 4 Mar 2008
- Messages: 126
QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement
Bonjour,
Je souhaiterais afficher plusieurs photos dans mon infobulle mais elles s'affichent les unes en dessous des autres (en colonne) or je voudrais qu'elles s'affichent horizontalement sur une même ligne.
Code HTML:
<img src="http://dordogne.fr/epidor/img/[% "nom_photo" %]" width="300" />
<img src="http://dordogne.fr/epidor/img/[% "nom_photo2" %]" width="300"/>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo3" %]" width="300"/>
Merci, AL
Dernière modification par sporito (Wed 14 April 2021 17:11)
Hors ligne
#2 Wed 14 April 2021 17:59
- michel56
- Participant assidu
- Lieu: Lorient
- Date d'inscription: 14 Jul 2012
- Messages: 474
Re: QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement
Bonjour,
Avec ce code:
<table style="width:900px;height:auto;">
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo2" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo3" %]" width="300px" />
</td>
</tr>
</table>
Dernière modification par michel56 (Wed 14 April 2021 18:03)
Opérateur cartographique & DAO & PHP.
Hors ligne
#3 Wed 14 April 2021 18:22
- sporito
- Participant actif
- Date d'inscription: 4 Mar 2008
- Messages: 126
Re: QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement
Bonjour,
Avec ce code:
<table style="width:900px;height:auto;">
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo2" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo3" %]" width="300px" />
</td>
</tr>
</table>
C'est parfait MERCI, j'ai un dernier souci, c'est que j'ai l'impression que QGIS limite la largeur totale de l'infobulle 800px, du coup la 3ieme photo est coupée, et je voudrais que chaque photo reste à cette taille minimale de 300px
Dernière modification par sporito (Wed 14 April 2021 18:27)
Hors ligne
#4 Wed 14 April 2021 18:26
- michel56
- Participant assidu
- Lieu: Lorient
- Date d'inscription: 14 Jul 2012
- Messages: 474
Re: QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement
Tu peux mettre sur deux lignes:
<table style="width:600px;height:auto;">
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo2" %]" width="300px" />
</td>
</tr>
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo3" %]" width="300px" />
</td>
<td>
</td>
</tr>
</table>
Opérateur cartographique & DAO & PHP.
Hors ligne
#5 Wed 14 April 2021 18:37
- sporito
- Participant actif
- Date d'inscription: 4 Mar 2008
- Messages: 126
Re: QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement
Tu peux mettre sur deux lignes:
<table style="width:600px;height:auto;">
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo" %]" width="300px" />
</td>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo2" %]" width="300px" />
</td>
</tr>
<tr>
<td>
<img src="http://dordogne.fr/epidor/img/[% "nom_photo3" %]" width="300px" />
</td>
<td>
</td>
</tr>
</table>
Ouai, c'est top !
Merci Beaucoup Michel !
Hors ligne
Pages: 1
- Sujet précédent - QGIS 3.10/Infobulles: Plusieurs Photos alignees horizontalement - Sujet suivant