通过脚本选择时如何为散布标记设置动画?
我当时正在考虑通过增加和减小宽度来使其脉动。
可以手动尝试,但是有现有功能吗?没在API中获得幸运。
最佳答案
好了,您可以创建计时器并如下更改点的状态。
var myPoint;//the point you wan to animate
var hoverState = true;
setInterval(function(){
myPoint.setState(hoverState?'hover':'');//changing state of point
hoverState = !hoverState;//toggling state variable
}, 1000);