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 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
| <!DOCTYPE html>
<hmtl>
<head>
<title> ACCUEIL ::** - </title>
<meta charset="utf-8" />
<link href ="css/bootstrap.min.css" rel="stylesheet">
<link href ="css/styles.css" rel="stylesheet">
</head>
<body>
<header class="navbar navbar-inverse navbar-fixed-top bs-docs-nav" role="banner"
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle"* data-toggle="collapse" data-target=".navHeaderCollapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<nav class="collapse navbar-collapse navHeaderCollapse" role="navigation">
<ul class="nav navbar-nav">
<li class = "dropdown"><a href="#" class = "dropdown-toggle" data-toggle="dropdown" data-hover="dropdown">Organisme<b class = "caret"></b></a>
<ul class = "dropdown-menu">
<li><a href = "#">Présentation</a></li>
<li><a href = "#">Missions</a></li>
<li><a href = "#">Organigramme</a></li>
<li><a href = "#">Ressources humaines</a></li>
</ul>
</li>
<li class = "dropdown"><a href="#" class = "dropdown-toggle"* data-toggle = "dropdown" data-hover="dropdown" >Bassin<b class = "caret"></b></a>
<ul class = "dropdown-menu">
<li><a href = "#">Zone d'action</a></li>
<li><a href = "#">Principales données socio-économiques</a></li>
<li><a href = "#">Climat</a></li>
<li><a href = "#">Ressources en eau</a></li>
<li><a href = "#">Qualité de l'eau</a></li>
<li><a href = "#">Infrastructures hydrauliques</a></li>
</ul>
</li>
<li class = "dropdown"><a href="#" class = "dropdown-toggle"* data-toggle = "dropdown" data-hover="dropdown" >Service<b class = "caret"></b></a>
<ul class = "dropdown-menu">
<li><a href = "#">Appels d'offres</a></li>
<li><a href = "#">Etudes et travaux</a></li>
<li><a href = "#">Assistance technique</a></li>
<li><a href = "#">Redevances</a></li>
</ul>
</li>
<li class = "dropdown"><a href="#" class = "dropdown-toggle"* data-toggle = "dropdown" data-hover="dropdown" >Stratégie<b class = "caret"></b></a>
<ul class = "dropdown-menu">
<li><a href = "#">Stratégie Nationale de l'Eau</a></li>
<li><a href = "#">Débat national sur l'eau</a></li>
</ul>
</li>
<li class = "dropdown"><a href="#" class = "dropdown-toggle"* data-toggle = "dropdown" data-hover="dropdown" >Réglementation<b class = "caret"></b></a>
<ul class = "dropdown-menu">
<li><a href = "#">Recueil Loi amp; Textes d'application</a></li>
<li><a href = "#">Formulaires administratifs</a></li>
<li><a href = "#">Situation Demandes Prélèvement&Creusement</a></li>
<li><a href = "#">Loi n° 10-95 sur l'eau</a></li>
<li><a href = "#">Réglementation spécifique</a></li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Accueil</a></li>
<li><a href="#">Plan</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</header>
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script>
;(function($, window, undefined) {
****// don't do anything if touch is supported
****// (plugin causes some issues on mobile)
****if('ontouchstart' in document) return;
*
****// outside the scope of the jQuery plugin to
****// keep track of all dropdowns
****var $allDropdowns = $();
*
****// if instantlyCloseOthers is true, then it will instantly
****// shut other nav items when a new one is hovered over
****$.fn.dropdownHover = function(options) {
*
********// the element we really care about
********// is the dropdown-toggle's parent
********$allDropdowns = $allDropdowns.add(this.parent());
*
********return this.each(function() {
************var $this = $(this),
****************$parent = $this.parent(),
****************defaults = {
********************delay: 500,
********************instantlyCloseOthers: true
****************},
****************data = {
********************delay: $(this).data('delay'),
********************instantlyCloseOthers: $(this).data('close-others')
****************},
****************settings = $.extend(true, {}, defaults, options, data),
****************timeout;
*
************$parent.hover(function(event) {
****************// so a neighbor can't open the dropdown
****************if(!$parent.hasClass('open') && !$this.is(event.target)) {
********************return true;
****************}
*
****************if(settings.instantlyCloseOthers === true)
********************$allDropdowns.removeClass('open');
*
****************window.clearTimeout(timeout);
****************$parent.addClass('open');
****************$parent.trigger($.Event('show.bs.dropdown'));
************}, function() {
****************timeout = window.setTimeout(function() {
********************$parent.removeClass('open');
********************$parent.trigger('hide.bs.dropdown');
****************}, settings.delay);
************});
*
************// this helps with button groups!
************$this.hover(function() {
****************if(settings.instantlyCloseOthers === true)
********************$allDropdowns.removeClass('open');
*
****************window.clearTimeout(timeout);
****************$parent.addClass('open');
****************$parent.trigger($.Event('show.bs.dropdown'));
************});
*
************// handle submenus
************$parent.find('.dropdown-submenu').each(function(){
****************var $this = $(this);
****************var subTimeout;
****************$this.hover(function() {
********************window.clearTimeout(subTimeout);
********************$this.children('.dropdown-menu').show();
********************// always close submenu siblings instantly
********************$this.siblings().children('.dropdown-menu').hide();
****************}, function() {
********************var $submenu = $this.children('.dropdown-menu');
********************subTimeout = window.setTimeout(function() {
************************$submenu.hide();
********************}, settings.delay);
****************});
************});
********});
****};
*
****$(document).ready(function() {
********// apply dropdownHover to all elements with the data-hover="dropdown" attribute
********$('[data-hover="dropdown"]').dropdownHover();
****});
})(jQuery, this);
*
</script>
<script src="js/bootstrap.js"></script>
*
</body>
</html> |
Partager