-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
106 lines (91 loc) · 2.64 KB
/
Copy pathgallery.html
File metadata and controls
106 lines (91 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Les photos de Xav</title>
<link href="/css/main.css" rel="stylesheet">
</head>
<body>
<nav>
<div class="dropdown">
<button id="menuBtn" class="dropbtn">
Menu
</button>
<div id="myDropdown" class="dropdown-content">
<a href="index.html">Feed</a>
<a href="gallery.html">Gallery</a>
<a href="games.html">Jeux</a>
</div>
</div>
</nav>
<h1>Galerie</h1>
<!-- =============== LA GALERIE AVEC SES BOUTONS DE COMMANDE ================= -->
<div class="flex-around">
<section class="slider-wrapper">
<button class="slide-arrow" id="slide-arrow-prev">
‹
</button>
<button class="slide-arrow" id="slide-arrow-next">
›
</button>
<div class="slides-container" id="slides-container">
</div>
</section>
</div>
<!-- =============== LA GALERIE AVEC SES BOUTONS DE COMMANDE ================= -->
<div class="flex-around">
<!-- TOGGLE BUTTON : MOSAIC / COLUMN -->
<div>
<!--<button id="imgDisplayBtn" class="dropbtn">
Afficher en colonnes
</button>-->
<div class="flex-wrap toggleBlock">
<div id="joliBouton" class="toggle">
<div class="circle"></div>
</div>
<span class="btn-text">Afficher en colonne</span>
</div>
</div>
<!-- AJOUTER UNE IMAGE -->
<div>
<button id="addImgBtn" class="dropbtn">
Ajouter une image
</button>
</div>
</div>
<!------------- FORMULAIRE AJOUT IMAGE --------------->
<div id="formBox" class="box-fixed-centered">
<div>
<h2>Ajouter une image</h2>
</div>
<form id="addImg" action="">
<div class="row">
<div class="col-25">
<label for="url">URL</label>
</div>
<div class="col-75">
<input type="text" id="url" name="url" placeholder="http://...">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="aut">Auteur</label>
</div>
<div class="col-75">
<input type="text" id="aut" name="auteur" placeholder="Nom prénom..">
</div>
</div>
<br>
<div class="row">
<input type="submit" value="Enregistrer">
</div>
</form>
</div>
<!-- FEED IMAGES FROM API -->
<div id="feedImgBlock" class="flex-wrap">
</div>
<!-- JS INCLUDE -->
<script src="/js/nav.js"></script>
<script src="/js/gallery.js"></script>
</body>
</html>