Last active
December 1, 2015 07:30
-
-
Save TomoyaShibata/a184b636ce63c71b346b to your computer and use it in GitHub Desktop.
React with ES6。マウスオーバーイベントを拾い、マウスカーソルが要素の右端に当たったかどうかを判定する。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_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