• User

    trasformare un fadeTo in FadeIn

    ciao a tutti
    spero di postare nel posto giusto visto che pongo una domanda riguardo jquery

    ho installato su una pagina uno script preso da flowplayer che è una galleria di miniature e al click apre la versione più grande (no lightbox et simil.)

    l'effetto nell'apertura è uno strano fadeTo, ho provato tanti modi per creare un fadeIn ma nulla, neache la guida jquery non mi ha aiutato.

    qualcuno di voi riuscirebbe ad aiutarmi?

    ecco il codice incriminato

    $("#browsable").scrollable().navigator();
    
    $(function() {
    
    $(".scrollable").scrollable();
    
    $(".items img").click(function() {
    
        // see if same thumb is being clicked
        if ($(this).hasClass("active")) { return; }
    
        // calclulate large image's URL based on the thumbnail URL (flickr specific)
        var url = $(this).attr("src").replace("_t", "");
    
        // get handle to element that wraps the image and make it semi-transparent
        var wrap = $("#image_wrap").fadeTo("medium", 0.5);
        
        // the large image from ww. flickr .co
        var img = new Image();
    
    
        // call this function after it's loaded
        img.onload = function() {
    
            // make wrapper fully visible
            wrap.fadeTo("fast", 1);
    
            // change the image
            wrap.find("img").attr("src", url);
    
        };
    
        // begin loading the image from ww. flickr .com
        img.src = url;
    
        // activate item
        $(".items img").removeClass("active");
        $(this).addClass("active");
    
    // when page loads simulate a "click" on the first image
    }).filter(":first").click();
    });