Sunday, April 8, 2012

Dynamic Content using tours

Today I'll show you a solution using jquery to show dynamic content in a great way... First, take a look to this demo, this plugin encourages our content through tours. This type of animation can be achieved using a path that we created a very simple.

It uses mostly CSS effects to work but in case the browser does not support those effects this plugin disable them.

This is a example code :
$(".your-container-element").scrollPath({
drawPath: true,
wrapAround: true,
scrollBar: false,
callback: function() {
alert("You've reached the end!");
}
});

Here you can find a very good documentation for this plugin and also the source

No comments:

Post a Comment