calebasse/mockups/rendez-vous.html @ ff25533d
| 20ddf8d8 | Frédéric Péters | <!DOCTYPE html>
|
|
<html lang="fr">
|
|||
<head>
|
|||
<meta charset="utf-8"/>
|
|||
<title>APS42 — Agenda</title>
|
|||
<link rel="stylesheet" type="text/css" media="all" href="css/style.css"/>
|
|||
<link rel="stylesheet" type="text/css" media="all" href="css/smoothness/jquery-ui-1.8.21.custom.css"/>
|
|||
<script src="js/jquery-1.7.2.min.js"></script>
|
|||
<script src="js/jquery-ui-1.8.21.custom.min.js"></script>
|
|||
<script>
|
|||
$(function() {
|
|||
$('#tabs').tabs();
|
|||
$('div.agenda > div').accordion({active: false});
|
|||
$('#sandy-kilo-item').click(function() {
|
|||
$(this).toggleClass('active');
|
|||
$('.sandy').toggle();
|
|||
if ($(this).hasClass('active')) $('#tabs').tabs('select', 0);
|
|||
});
|
|||
$('#bob-leponge-item').click(function() {
|
|||
$(this).toggleClass('active');
|
|||
$('.bob').toggle();
|
|||
if ($(this).hasClass('active')) $('#tabs').tabs('select', 1);
|
|||
});
|
|||
$('#sandy-kilo-item').click();
|
|||
$('#bob-leponge-item').click();
|
|||
$('#filtre input').keyup(function() {
|
|||
var filtre = $(this).val();
|
|||
$('#users li').each(function() {
|
|||
if ($(this).attr('id').match(filtre)) {
|
|||
$(this).show();
|
|||
} else {
|
|||
$(this).hide();
|
|||
}
|
|||
});
|
|||
});
|
|||
});
|
|||
</script>
|
|||
</head>
|
|||
<body>
|
|||
<div id="wrap">
|
|||
<div id="header">
|
|||
| d79295fb | Frédéric Péters | <h1><a href="accueil.html">APS 42</a></h1>
|
|
| 20ddf8d8 | Frédéric Péters | <span>Service A</span>
|
|
</div>
|
|||
<div id="splash">
|
|||
<div id="user-links">
|
|||
<a href="connexion.html">Déconnexion</a>
|
|||
</div>
|
|||
</div>
|
|||
<div id="content">
|
|||
<div id="appbar">
|
|||
<h2>Rendez-vous</h2>
|
|||
<a href="accueil.html">Retourner à l'accueil</a>
|
|||
<a href="agenda.html">Retourner à l'agenda</a>
|
|||
</div>
|
|||
<form>
|
|||
</form>
|
|||
</div>
|
|||
<div id="footer">
|
|||
—
|
|||
</div>
|
|||
</div>
|
|||
</body>
|
|||
</html>
|