87,991
社区成员
发帖
与我相关
我的任务
分享
function marker_animation(a, c, b) {
$("#map1").append($('<div class="marker_animation ' + b + '"></div>').css("left", a + "px").css("top", c + "px").css({
opacity: 1,
scale: 0
}).transition({
opacity: 0,
scale: 1
},
1000, "linear",function(){
$(this).remove();
}
))
}
function(){
$(this).remove();
}
我知道不能这样放,但是原文件就是这样的,而且是正常的,让我非常的不淡定