-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (82 loc) · 2.51 KB
/
index.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css" />
<script type="text/javascript" src="script/jquery.jcarousel.js"></script>
<script type="text/javascript" src="script/script.js"></script>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" type="text/css" href="css/jcarousel.css"/>
<title>FrenchTownViewer</title>
</head>
<body>
<div id="menu">
<div id="titre">
<h1>FrenchTownViewer</h1>
<i>Cette application permet d'obtenir<br/>
des photos d'une commune via Flickr</i>
</div>
<div id="formulaire">
<h2>Effectuer une recherche</h2>
<table>
<tr>
<td>
<input type="text" id="commune" placeholder="ex: Nantes"/>
</td>
<td>
<input type="number" id="nbr_photo" step="1" value="10">
</td>
</tr>
<tr>
<td colspan=2>
<input type="button" id="valid" value="Soumettre">
</td>
</tr>
<tr>
<td>
Trier par : <br/>
<select id="tri">
<option id="auteur" value="auteur">auteur</option>
<option id="date" value="date">date</option>
<option id="titre" value="titre">titre</option>
</select>
</td>
<td>
Disposition des images :<br/>
<select id="disposition">
<option id="liste">en liste</option>
<option id="caroussel">en caroussel</option>
</select>
</td>
</tr>
<tr>
<td>
date supérieure à :
</td>
<td>
<input type="date" id="filtreDate">
</td>
</tr>
</table>
</div>
</div> <!-- /end .menu -->
<div class="jcarousel-wrapper">
<div class="jcarousel">
<ul>
</ul>
</div>
<div id="aSupr">
</div>
</div>
<!-- fenetre modale -->
<div class="modal">
<span class="modal_close">×</span>
<p>
<!-- texte à ajouter -->
</p>
</div>
<div class="modalbg"></div>
</body>
</html>