i need a vertical carrousel to show some things like Lastest NEWS. And i need to be infinite and no mouse help... all aut开发者_StackOverflowomaticaly. please i need inmediate help!, somebody knows where can i find something like that?
Thanks :)
REMAKE OF THE QUESTION:
i need something like the box: "recent orders" in http://www.dealextreme.com/ .... is in the bottom at the right.
Use jCarousel. You'd combine the vertical, circular, and autoscrolling options.
Edit: here's a demo to get you started.
HTML
<div id="mycarousel">
<ul>
<li><h3>News Item 1</h3><a>Link 1</a></li>
<li><h3>News Item 2</h3><a>Link 2</a></li>
<li><h3>News Item 3</h3><a>Link 3</a></li>
<li><h3>News Item 4</h3><a>Link 4</a></li>
<li><h3>News Item 5</h3><a>Link 5</a></li>
</ul>
</div>
JavaScript
$(function() {
$('#mycarousel').jcarousel({
vertical: true,
scroll: 1,
auto: 2,
wrap: 'circular'
});
});
Look into http://jquery.malsup.com/cycle/ which is highly configurable.
There is a vertical scrolling/sliding effect.
Specifically, you want some type of paging mechanism such as shown in the demo page:
http://jquery.malsup.com/cycle/int2.html
jQuery Cycle is quite powerful but it does have a learning curve and you may have to experiment with the different easements to get what you need.
Also, it will scroll quite complex content in addition to images.
Following is vertical carousel, you can extract the code and use.
http://www.ajaxshake.com/demo/EN/890/920497f7/horizontal-and-vertical-jquery-content-carousel-jscarousel.html
精彩评论