spip_nursit/plugins/dist/themes/zpip-1/Snowblind/Snowblind-1024px/snowblind.js
2023-06-01 17:30:12 +02:00

9 lines
196 B
JavaScript

jQuery(document).ready(function(){
jQuery("#nav li").hover(
function() {
jQuery(this).animate({"top": "-10px"}, 200);
},
function() {
jQuery(this).animate({"top": "0px"}, 200) ;
});
});