开发者

is there any specific jquery plugin which includes a combination of jquery slider & php paging?

开发者 https://www.devze.com 2023-01-22 17:28 出处:网络
I have a products listing page that lists 3 products in a single line per page. So I want to put next-previous buttons on left-right side of this 3 开发者_开发百科products line.

I have a products listing page that lists 3 products in a single line per page. So I want to put next-previous buttons on left-right side of this 3 开发者_开发百科products line. So when someone click next, it bring next 3 products by slide-in effect. Any suggestion ?


You could do this with jCarousel pretty easily.

The key deviation from the quick example on that link is that you would need to do ajax call to get your next set of content assuming youre using OFFSET and LIMIT in a db query for pagination. Of course in this case you would have to use a synchronous request as opposed to an async one because you have to wait for the response before you can actually load the items.

OTH, If youre not paginating a db query you could just load up all the items in a JSON data hash upfront and then build the html in the callback... more like whats being done in that specific example.

0

精彩评论

暂无评论...
验证码 换一张
取 消