05.4.2009

Top 5 jQuery image galleries

Bookmark and Share
Add to DZone

I have collected some jQuery image galleries for you to choose your preferred one. Each one is working in different way than the other.
Here is the list of the top 5 jquery image galleries:

Read more »

03.26.2009

Scroll window smoothly in jQuery - Animated scroll

Bookmark and Share
Add to DZone


Using jQuery animate() function to do a smooth scrolling:

I have also created a div as follow:

<div id="scrollToHere">
Scroll to here
</div>

You need something to run your script. Create a button like this:

<input type="button" onclick="scollWin();" value="Scroll up" />

The jQuery Code will be like this:

function scrollWin(){
$('html, body').animate({
scrollTop: $("#scrollToHere").offset().top
}, 2000);
}

Here is something to try:

now jQuery window scrolling is done with animation.

Enjoy it..

Free Blog Themes / Templates