是否有可能使引脚反弹越来越快? 我希望pin能够稍微跳一点点。 我试过css但它不起作用。我可以编辑api弹跳吗?像持续时间或速度?
google.maps.event.addListener(marker, 'mouseover', function() {
if (this.getAnimation() == null || typeof this.getAnimation() === 'undefined') {
clearTimeout(bounceTimer);
var that = this;
bounceTimer = setTimeout(function(){
that.setAnimation(google.maps.Animation.BOUNCE);
},
100);
}
//$('.gmnoprint img').addClass('anim');
});