开发者

Modal qTip - hide when ... mouseleave?

开发者 https://www.devze.com 2022-12-31 11:11 出处:网络
im using the modal window qTip. Everything works fin, but i was wondering if it is posible to hide the modal window on either when onMouseout or mouseleave... and how?

im using the modal window qTip. Everything works fin, but i was wondering if it is posible to hide the modal window on either when onMouseout or mouseleave... and how?

this is my current setting:

hide: {
   when: {
      event: 'unfocus'
   }
},

Of course the unfocus only works when clicking outside. Any ide开发者_如何学Pythonas?


You can try this too:

hide: {when: {event:'mouseout unfocus'}, fixed: true, delay: 500}


hide: {
  when: {
    event: 'mouseout'
  }
}
0

精彩评论

暂无评论...
验证码 换一张
取 消