這是我當前的代碼如何在兩秒鐘的懸停後執行一項功能?
google.maps.event.addListener(marker, `mouseover`, function() {
alert('loaded when i hovered');
});
,但我想如果鼠標超過兩秒鐘元素要執行的功能。
我試過這個,但沒有奏效。
google.maps.event.addListener(marker, `mouseover 2000`, function() {
alert('loaded after then when i stay mouse 2 sec');
});
我需要做什麼才能使該功能在兩秒鐘後懸停?
請重播我的例子。謝謝 – Dest