當我們在 Google map 上疊 div ,如那個粉紅色半透明的箭頭圖片,用來表示使用者手持面向的方向。
這時,div會影響原本使用者在圖台上操作,如二指縮放、滑動,因為事件被箭頭的div吃掉。
這時只要把箭頭加上一個 css 的屬性:
相關討論網址:http://stackoverflow.com/questions/1009753/pass-mouse-events-through-absolutely-positioned-element
google 搜尋關鍵字:div event pass-through
- $("#direct").css({
- 'pointer-events':'none'
- });