spip_nursit/plugins/dist/themes/zpip-1/Snowblind/Snowblind-1024px/snowblind.js

10 lines
196 B
JavaScript
Raw Normal View History

2023-06-01 15:30:12 +00:00
jQuery(document).ready(function(){
jQuery("#nav li").hover(
function() {
jQuery(this).animate({"top": "-10px"}, 200);
},
function() {
jQuery(this).animate({"top": "0px"}, 200) ;
});
});