Last change
on this file since 84 was
80,
checked in by guille, 16 years ago
|
el plugin completo
|
-
Property svn:executable set to
*
|
File size:
537 bytes
|
Line | |
---|
1 | // deplacer l'image |
---|
2 | |
---|
3 | $(document).ready(function(){ |
---|
4 | |
---|
5 | $("#corps .listageconteneur li").each(function(){ |
---|
6 | |
---|
7 | lelogo=$(this).children(".listagelogo"); |
---|
8 | $(this).children(".listagelogo").remove(); |
---|
9 | $(this).children(".listagetitre").after(lelogo); |
---|
10 | }); |
---|
11 | |
---|
12 | // fait marcher le menu a deux niveaux |
---|
13 | $('#navigation').children('.niveau1').each(function(){ |
---|
14 | $(this).mouseover(function() { |
---|
15 | $(this).children('.ulniveau2').show(); |
---|
16 | }) |
---|
17 | |
---|
18 | $(this).mouseout(function() { |
---|
19 | $(this).children('.ulniveau2').hide(); |
---|
20 | }) |
---|
21 | }); |
---|
22 | |
---|
23 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.