views:

197

answers:

1

hi there i'm relatively new to jquery, but i wanted to see if anyone could provide me with any insight on this.

what i've got here is an autoscrolling list, with overlay functionality..

http://www.freestylemovement.com/secret/3.html

what i'm trying to achieve is a scrollable function like in this example, except i like using the list format .. (see hyperlink on attached form, i'm only allowed to post 1 link)

so i've been messing around with this snippet,

$(function() { $("#chained img[rel]").overlay({effect: 'apple', expose: '#00ff00' }) ; // scrollable inside the box. Its API is assigned to the "images" variable var list = $("ul.items li ").scrollable({size: 1, api:true}); });


but i can't seem to get it working .. i would really appreciate some feedback and help.. thanks in advance!

A: 

Here is an example of a jQuery gallery plugin that's built of an unordered list. If you google jQuery gallery you'll find lots of other gallery plugins built similarly.

Ryan Lynch