Skip to content

Instantly share code, notes, and snippets.

@TomoyaShibata
Last active December 1, 2015 07:30
Show Gist options
  • Save TomoyaShibata/a184b636ce63c71b346b to your computer and use it in GitHub Desktop.
Save TomoyaShibata/a184b636ce63c71b346b to your computer and use it in GitHub Desktop.
React with ES6。マウスオーバーイベントを拾い、マウスカーソルが要素の右端に当たったかどうかを判定する。
_isOnRightEdge({clientX}) {
// マウスカーソルが要素の右端~左3pxに存在するか判定する
const targetElWidth = this.refs.textareaCommentForm.offsetWidth;
if ((targetElWidth - clientX) < 3) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment