2016-08-03 9 views
-1

Ich bin auf der Suche nach einem Bild zuerst laden dann die Standort-Icons Pop mit guten Animationen wie der Bounce oder Pop-up-Effekt. Ich habe momentan ein statisches Bild, möchte es aber interessanter machen. i have attached the image herepoping Icons über ein Bild in jquery

+0

geben Sie Ihren Code bitte –

+0

verwenden Sie eine Leinwand. poste deinen Code. –

+0

So ähnlich? - http://waynegm.github.io/imgNotes/ –

Antwort

0

Vielleicht so etwas?

$(document).ready(function() { 
    //Hide all location images 
    $("img.locations").toggle(); 

    $("img.backround-image").on("load", function() { 
     $("img.locations").fadeIn(); 
     //Show all location images with a fade in 
     //- or any other animation for all location images 
    }); 
});