I need a jQuery library that has the effect on this site .
The effect I need is for the 3 banners at the top of the page to have a scrolling effect to the left, does anyone have any ideas?
I need a jQuery library that has the effect on this site .
The effect I need is for the 3 banners at the top of the page to have a scrolling effect to the left, does anyone have any ideas?
Can serve your needs link
This library creates an effect that does not do exactly the same thing as the question example, but it's similar:
<ul id="scroller">
<li><img src="imagem1.jpg" width="290" height="200"></li>
<li><img src="imagem2.jpg" width="290" height="200"></li>
<li><img src="imagem3.jpg" width="290" height="200"></li>
...
</ul>
// Inclui as bibliotecas
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery.simplyscroll.js"></script>
// O CSS que vem na SimplyScroll
<link rel="stylesheet" href="jquery.simplyscroll.css" media="all" type="text/css">
<script type="text/javascript">
(function($) {
$(function() { //executa quando o DOM estiver pronto
$("#scroller").simplyScroll();
});
})(jQuery);
</script>