moving images round using jquery

Nithadeepak
Posted by Nithadeepak under jQuery category on | Points: 40 | Views : 6914
First you have to download jquery plugin and jquery roundabout plugin
aspx
<div class="gallery" > 
<ul>
<li><img src="jew1.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="jew2.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="k1.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="kid1.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="lap1.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
<li><img src="n1.jpg" alt="Test Image 1" width="320px" height="320px" /> </li>
</ul>
</div>

.js file
$(document).ready(function() {

$("ul").roundabout({
shape: 'waterWheel'
});
});


or
$(document).ready(function() {
$('ul').roundabout({
shape: 'lazySusan'
});
});

Comments or Responses

Posted by: Akiii on: 5/29/2011 Level:Bronze | Status: [Member] | Points: 10
hi....nitha...

I am not being able to download the roundabout plugin of jquery.......please can you help you ?

Thanks and Regards
Akiii
Posted by: Nithadeepak on: 6/4/2011 Level:Bronze | Status: [Member] | Points: 10
Hi akiii,
You can get more information about roundabout and also download the plugin from
http://fredhq.com/projects/roundabout-shapes

The fol link will also help you ....
http://plugins.jquery.com/project/roundabout
Thanks,
Posted by: Akiii on: 6/4/2011 Level:Bronze | Status: [Member] | Points: 10
Excellent links nitha....

Thanks for your help...
Regards
Akiii

Login to post response