Skip to content

Instantly share code, notes, and snippets.

@AnatoliyAkhmatov
Created April 29, 2021 07:42
Show Gist options
  • Save AnatoliyAkhmatov/3a8d79a64068aa4b3aa6940fc3bf5599 to your computer and use it in GitHub Desktop.
Save AnatoliyAkhmatov/3a8d79a64068aa4b3aa6940fc3bf5599 to your computer and use it in GitHub Desktop.
var showed = false
window.addEventListener('mouseout', e => {
if (!showed && (e.pageX < 1 || e.pageY < 1)) {
showed = true
//
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment