Merge branch 'dev' into pagination
This commit is contained in:
commit
649be52829
@ -38,7 +38,7 @@
|
||||
|
||||
<article class="explorer">
|
||||
<h1>Explorer</h1>
|
||||
<p>Cette section du site permet de générer une <img width="14rem" src="styles/icons/list.svg" alt="liste"> liste (aussi visible sous le format d'une <img width="16.5rem" src="styles/icons/frame.svg" alt="galerie"> galerie) en fonction de différents paramètres, listés ci-dessous. Il permet d'explorer l'œuvre de Ginou, y compris les tableaux dont nous ne possédons pas de photo.<br>
|
||||
<p class="intro">Cette section du site permet de générer une <img width="14rem" src="styles/icons/list.svg" alt="liste"> liste (aussi visible sous le format d'une <img width="16.5rem" src="styles/icons/frame.svg" alt="galerie"> galerie) en fonction de différents paramètres, listés ci-dessous. Il permet d'explorer l'œuvre de Ginou, y compris les tableaux dont nous ne possédons pas de photo.<br>
|
||||
En mode <img width="14rem" src="styles/icons/list.svg" alt="liste"> liste, l'icône <img width="16.5rem" src="styles/icons/eye-black.svg" alt="œil"> œil permet de voir le tableau en grand ; en mode <img width="16.5rem" src="styles/icons/frame.svg" alt="galerie"> galerie, il faut cliquer sur les tableaux.<br>
|
||||
Une ☆ étoile vide dans la colonne photo signifie que nous n'avons pas de photo pour un tableau ; une ★ étoile qu'elle est de mauvaise qualité ; deux ★★ étoiles qu'elle est acceptable ; et trois ★★★ étoiles qu'elle est tout à fait satisfaisante.<br>
|
||||
Le symbole <img width="5rem" src="styles/icons/exclamation-mark.svg" alt="double point d'exclamation"> dans la colonne aide signifie que nous avons besoin d'aide pour obtenir une photo et que <a href="informations.html">vous pouvez contribuer</a>.<br>
|
||||
@ -53,15 +53,15 @@
|
||||
<span><input type="checkbox" id="photos" name="photos" value="all">
|
||||
<label for="photos">Tout état</label></span>
|
||||
<span><input type="checkbox" id="none" name="photo" value="none">
|
||||
<label for="none">☆ aucune</label></span>
|
||||
<label for="none">☆ inexistant</label></span>
|
||||
<span><input type="checkbox" id="exist" name="photo" value="exist">
|
||||
<label for="exist">Existante</label></span>
|
||||
<label for="exist">Existant</label></span>
|
||||
<span><input type="checkbox" id="bad" name="photo" value="bad">
|
||||
<label for="bad">★ mauvaise</label></span>
|
||||
<label for="bad">★ mauvais</label></span>
|
||||
<span><input type="checkbox" id="ok" name="photo" value="ok">
|
||||
<label for="ok">★★ acceptable</label></span>
|
||||
<span><input type="checkbox" id="good" name="photo" value="good">
|
||||
<label for="good">★★★ bonne</label></span>
|
||||
<label for="good">★★★ bon</label></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="box years">
|
||||
@ -210,7 +210,7 @@
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
<p class="result" class="center"></p>
|
||||
<p class="result center"></p>
|
||||
</article>
|
||||
</body>
|
||||
</html>
|
@ -363,13 +363,13 @@ jQuery(document).ready(function($)
|
||||
return true;
|
||||
splitTag = tag.split(", ");
|
||||
|
||||
for (t of splitTag)
|
||||
for (t of paramTag)
|
||||
{
|
||||
if (paramTag.includes(t))
|
||||
return true;
|
||||
}
|
||||
if (!splitTag.includes(t))
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
function checkPhoto(photo)
|
||||
{
|
||||
@ -446,22 +446,32 @@ jQuery(document).ready(function($)
|
||||
else
|
||||
result += '<td> </td>'
|
||||
|
||||
result += '<td><a href="painting.html?number=' + i.number + '"><img src="styles/icons/eye.svg" alt="Voir"></a></td>';
|
||||
result += '<td><a data-fancybox="exposition-list" href="';
|
||||
if (i.photo == "none")
|
||||
result += 'images/unknown.jpg';
|
||||
else
|
||||
result += 'photos/paintings/normal/' + i.number + '.jpg'
|
||||
result += '" data-fancybox-index="' + i.number + '"><img src="styles/icons/eye.svg"></a></td>';
|
||||
result += "</tr>";
|
||||
|
||||
$("table").append(result);
|
||||
|
||||
// gallery
|
||||
paintingHtml = '<div class="gallery-item">';
|
||||
if (i.photo == "none")
|
||||
{
|
||||
paintingHtml = '<a data-fancybox="exposition" href="images/unknown.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<a data-fancybox="exposition" href="images/unknown.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<img src="images/unknown.jpg" alt="Tableau ' + i.number + '"></a>'
|
||||
}
|
||||
else
|
||||
{
|
||||
paintingHtml = '<a data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<a data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<img src="photos/paintings/mini/' + i.number + '.jpg" alt="Tableau ' + i.number + '"></a>'
|
||||
}
|
||||
paintingHtml += '<span class="item-title">' + i.title;
|
||||
if (i.year != '—')
|
||||
paintingHtml += ' (' + i.year + ')';
|
||||
paintingHtml += '</span></div>';
|
||||
$(".gallery").append(paintingHtml);
|
||||
}
|
||||
$(".explorer .result").append("La recherche donne un résultat de <strong>" + numberOfItem + " élément" + (numberOfItem > 1 ? "s" : "") + "</strong>.");
|
||||
@ -513,7 +523,7 @@ jQuery(document).ready(function($)
|
||||
|
||||
|
||||
// fancybox configuration
|
||||
$('[data-fancybox="exposition"]').fancybox(
|
||||
$('[data-fancybox="exposition"], [data-fancybox="exposition-list"]').fancybox(
|
||||
{
|
||||
infobar: false,
|
||||
toolbar: true,
|
||||
|
@ -13,16 +13,21 @@ jQuery(document).ready(function($)
|
||||
if (paintingList.length % (14 + 1) == 0)
|
||||
canDisplay = false;
|
||||
|
||||
paintingHtml = '<div class="gallery-item ';
|
||||
if (canDisplay)
|
||||
{
|
||||
paintingHtml = '<a class="active" data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += 'active"><a data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<img src="photos/paintings/mini/' + i.number + '.jpg" alt="Tableau ' + i.number + '"></a>';
|
||||
}
|
||||
else
|
||||
{
|
||||
paintingHtml = '<a class="inactive" data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += 'inactive"><a data-fancybox="exposition" href="photos/paintings/normal/' + i.number + '.jpg" data-fancybox-index="' + i.number + '">'
|
||||
paintingHtml += '<img src="photos/paintings/mini/" alt="Tableau ' + i.number + '"></a>';
|
||||
}
|
||||
paintingHtml += '<span class="item-title">' + i.title;
|
||||
if (i.year != '—')
|
||||
paintingHtml += ' (' + i.year + ')';
|
||||
paintingHtml += '</span></div>';
|
||||
$(".gallery").append(paintingHtml);
|
||||
}
|
||||
}
|
||||
@ -47,14 +52,14 @@ jQuery(document).ready(function($)
|
||||
if (previousArray.length > 0)
|
||||
{
|
||||
for (i of previousArray)
|
||||
$('[data-fancybox-index="'+i+'"]').removeClass("active").addClass("inactive");
|
||||
$('[data-fancybox-index="'+i+'"]').parent().removeClass("active").addClass("inactive");
|
||||
}
|
||||
|
||||
previousArray = response;
|
||||
|
||||
$.each(response, function(index, item)
|
||||
{
|
||||
$('[data-fancybox-index="'+item+'"]').removeClass("inactive").addClass("active");
|
||||
$('[data-fancybox-index="'+item+'"]').parent().removeClass("inactive").addClass("active");
|
||||
$('[data-fancybox-index="'+item+'"] img').attr("src", "photos/paintings/mini/"+item+".jpg");
|
||||
});
|
||||
}
|
||||
|
@ -209,17 +209,21 @@ article #pagination {
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
article .gallery a.active {
|
||||
article .gallery .gallery-item.active {
|
||||
display:initial;
|
||||
}
|
||||
|
||||
article .gallery a.inactive {
|
||||
article .gallery .gallery-item.inactive {
|
||||
display:none;
|
||||
}
|
||||
|
||||
article .gallery {
|
||||
display:inline-block;
|
||||
position:relative;
|
||||
display:flex;
|
||||
flex-direction:row;
|
||||
justify-content:space-around;
|
||||
align-self:flex-end;
|
||||
flex-wrap:wrap;
|
||||
|
||||
margin:auto;
|
||||
margin-top:0;
|
||||
@ -229,6 +233,22 @@ article.exposition .gallery {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
article .gallery .gallery-item {
|
||||
display:inline-block;
|
||||
position:relative;
|
||||
margin:0.75rem;
|
||||
margin-top:0.75rem;
|
||||
margin-top:1.6rem;
|
||||
}
|
||||
|
||||
article .gallery .item-title {
|
||||
font-size:0.9rem;
|
||||
margin:0rem;
|
||||
padding:0rem;
|
||||
padding-top:0rem;
|
||||
display:block;
|
||||
}
|
||||
|
||||
article .gallery img {
|
||||
max-height:30vh;
|
||||
max-width:40vw;
|
||||
@ -376,15 +396,21 @@ article.explorer .gallery {
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
article.explorer p {
|
||||
width:55vw;
|
||||
article.explorer p.intro {
|
||||
width:75vw;
|
||||
margin:auto;
|
||||
margin-bottom:2rem;
|
||||
text-align:justify;
|
||||
}
|
||||
|
||||
@media only screen and (max-width:1200px) {
|
||||
article.explorer p {
|
||||
article.explorer p.intro {
|
||||
width:90vw;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width:1640px) {
|
||||
article.explorer {
|
||||
width:90vw;
|
||||
}
|
||||
}
|
||||
@ -604,6 +630,14 @@ article.explorer table .photo {
|
||||
|
||||
/* Divers */
|
||||
|
||||
article.divers .gallery {
|
||||
justify-content:flex-start;
|
||||
}
|
||||
|
||||
article.divers .gallery img {
|
||||
margin:0.7rem;
|
||||
}
|
||||
|
||||
article #stats {
|
||||
margin-top:2.5rem;
|
||||
margin-bottom:1.5rem;
|
||||
@ -619,6 +653,12 @@ article #stats .stat {
|
||||
margin-left:4vw;
|
||||
}
|
||||
|
||||
@media only screen and (max-width:600px) {
|
||||
article.divers .gallery {
|
||||
justify-content:center;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width:1000px) {
|
||||
article #stats {
|
||||
display:block;
|
||||
|
Loading…
Reference in New Issue
Block a user