Animate Your Links - jQuery Link Nudging

Thu, Jan 22, 2009

Javascript, Menu and Navigation, Scripts

Get animated menu effect using jQuery. A simple and small script that does the trick. Cool effect for your website, or application using jQuery.

Animated Your Links - jQuery Link Nudging

The jQuery Javascript

$(document).ready(function() {
$(‘a.nudge’).hover(function() { //mouse in
$(this).animate({ paddingLeft: ‘20px’ }, 400);
}, function() { //mouse out
$(this).animate({ paddingLeft: 0 }, 400);
});
});

View Demo

Share/Save/Bookmark

Related Posts

, ,

This post was written by:

pauline - who has written 106 posts on Open Source Resources for Designers & Developers | Greepit.com.


Leave a Reply