在jquery中的图像上弹出图标

时间:2016-08-03 13:07:30

标签: javascript jquery svg web

我希望首先加载图像,然后弹出位置图标,并使用弹跳或弹出效果等动画。我目前有静态图片,但想让它变得更有趣。i have attached the image here

1 个答案:

答案 0 :(得分:0)

也许是这样的?

$(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
    });
});