2016-08-03 2 views
-1

이미지가 먼저로드되고 위치 아이콘이 바운스 또는 팝업 효과와 같은 좋은 애니메이션으로 팝업됩니다. 현재 정적 인 이미지가 있지만 더 재미있게 만들고 싶습니다. i have attached the image herejquery의 이미지 위에 아이콘을 덧붙입니다.

+0

코드를 입력하십시오. –

+0

캔버스를 사용하십시오. 코드를 게시하십시오. –

+0

이게 뭔가요? - http://waynegm.github.io/imgNotes/ –

답변

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 
    }); 
}); 
관련 문제