Skip to content

Commit

Permalink
Update files/ko/web/api/window/screenx/index.md
Browse files Browse the repository at this point in the history
Co-authored-by: 1ilsang <[email protected]>
  • Loading branch information
givvemee and 1ilsang authored Dec 21, 2024
1 parent b35da92 commit 0f289c6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion files/ko/web/api/window/screenx/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ window.requestAnimationFrame(positionElem);

이는 `screenX`/`screenY` 와 완전히 동일한 동작을 합니다.

또한 코드에서는 `screenLeft` 을 지원하는지, 만일 지원하지 않으면 `screenLeft`/`screenTop` 의 폴리필을 `screenX`/`screenY` 로 사용할 수 있도록 탐지하기 위해 스니펫이 추가되었습니다.
또한 코드에서는 `screenLeft` 을 지원하는지, 만일 지원하지 않으면
`screenLeft`/`screenTop` 의 폴리필을 `screenX`/`screenY` 로 사용할 수 있도록
탐지하기 위해 스니펫이 추가되었습니다.

```js
if (!window.screenLeft) {
Expand Down

0 comments on commit 0f289c6

Please sign in to comment.