Modal qTip - hide when … mouseleave?

三世轮回 提交于 2019-12-06 13:39:15

问题


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 ideas?


回答1:


You can try this too:

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



回答2:


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


来源:https://stackoverflow.com/questions/2859321/modal-qtip-hide-when-mouseleave

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!