• User Attivo

    Cambiare immagini rotazione di sfondo

    Ciao ragazzi, mi sono imbattutto un un ottimo plugin che effettua il ridimensionamento delle immagini di background e le fa ruotare come slide. Il mio problema è riuscire a fare in modo che possa avere delle voci di menù per far "cambiare" la galleria caricata. Cioè clicco su natura e appaiono in rotazione le foto della natura, clicco su arte ed escono in rotazione le opere d'arte.

    il plugin è questo ajaxblender.com/bgstretcher-jquery-stretch-background-plugin.html

    se aveste altri link o idee so no ben accette 🙂 grazie mille mille


  • Super User

    Ciao gleenk,
    non l'ho provato, ma suppongo tu possa fare cosi:

    
    <script type="text/javascript">
    function natura() {
        $(document).bgStretcher({
            images: ['images/sample-natura-1.jpg', 'images/sample-natura-2.jpg', 'images/sample-natura-3.jpg', 'images/sample-natura-4.jpg'], imageWidth: 1024, imageHeight: 768
        });
    }
    
    function arte() {
        $(document).bgStretcher({
            images: ['images/sample-arte-1.jpg', 'images/sample-arte-2.jpg', 'images/sample-arte-3.jpg', 'images/sample-arte-4.jpg'], imageWidth: 1024, imageHeight: 768
        });
    }
    </script>
    
    <body>
    <a href="#" onlick="natura();">Natura</a> <a href="#" onlick="arte();">Arte</a>
    </body>