Beautiful jquery lightbox plugins
When I am re-designing my official website i have googling for thickbox alternatives to used in my portfolio section, thickbox is great but i need a lightbox effect plugins with beautiful predefined styles and compatible with latest jquery 1.3.1 version, and jquery lightbox below match my requirements.
Update: Jquery Image Loader

Follow up the comments from my previous post about animate loading image with jquery which asking about how to populate images from the DOM instead of declare the image within the javascript codes manualy, so i made a little changes into the code since it seems to be easier for you all to adopt this into your web pages.
Jquery plugin: Rotate image with javascript & HTML5 canvas
Following the post by Dion Almaer from Ajaxian, about interesting Jquery plugin by Pawel Witkowski, a jquery plugin to get image rotation effect directly from client side with only few lines of code
// rotate 5 degree
$('#image').rotate({angle:5});
Also able to animate it
var oRotation=$('#image2').rotate({maxAngle:25,minAngle:-55,
bind:
[
{"mouseover":function(){oRotation.rotateAnimation(85);}},
{"mouseout":function(){oRotation.rotateAnimation(-35);}}
]
});
Give it a try
Jquery Vertical Slide (Dropdown) Navigation

I have sometimes today to play around with jquery horizontal slide navigation (horizontal accordion navigation) (demo), I want to make it slide vertically, and here is what i have made.
Tested in FF3, Opera 9, IE 6, Safari 3. Dependencies: Jquery & Optional Jquery Easing Plugin.
Horizontal Slide Nav Using Jquery & CSS
Once i want to create icon based navigation with few lines text on it, but rather than to use tooltips i prefer to have show/hide effects, to hide the text and show it on mouse hover, and here is the result, like the effects? well just copy paste the snipet below, and you could customize it to match your taste and needs.
Read the rest →




