jQuery effect of scroll ads [closed]

-3

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?

    
asked by anonymous 29.01.2014 / 16:51

2 answers

1

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:

HTML:

<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>

Javascript:

// 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>
    
29.01.2014 / 16:54
0

The name of this 'effect' is called a carousel. There are many on the internet, I highlight the implementations:

29.01.2014 / 16:58