blob: 036c78cbafc5011a9cfec7f7dae05679b56fcf85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
---
title: MouseEvent.clientX
slug: Web/API/MouseEvent/clientX
translation_of: Web/API/MouseEvent/clientX
---
<div>{{{APIRef("DOM 이벤트")}}<br>
{{domxref("MouseEvent")}}} 인터페이스의 clientX 읽기 전용 속성은 이벤트가 발생한 애플리케이션 {{glossary("viewport")}}}} 내에 수평 좌표를 제공한다(페이지 내의 좌표와는 반대).<br>
<br>
예를 들어 뷰포트의 왼쪽 가장자리를 클릭하면 페이지가 수평으로 스크롤되는지 여부에 관계없이 항상 clientX 값이 0인 마우스 이벤트가 발생한다.</div>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox notranslate">var <em>x</em> = <em>instanceOfMouseEvent</em>.clientX
</pre>
<h3 id="Return_value">Return value</h3>
<p>CSSOM 뷰 모듈에 의해 재정의된 이중 부동 소수점 값. 원래 이 속성은 긴 정수로 정의되었다. 자세한 내용은 "브라우저 호환성" 섹션을 참조하십시오.</p>
<h2 id="Example">Example</h2>
<p>이 예에서는 {{Event("mousemove")}}} 이벤트를 트리거할 때마다 마우스 좌표를 표시한다.</p>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><p>위치를 보려면 마우스를 이동하십시오..</p>
<p id="screen-log"></p></pre>
<h3 id="JavaScript">JavaScript</h3>
<pre class="brush: js notranslate">let screenLog = document.querySelector('#screen-log');
document.addEventListener('mousemove', logKey);
function logKey(e) {
screenLog.innerText = `
Screen X/Y: ${e.screenX}, ${e.screenY}
Client X/Y: ${e.clientX}, ${e.clientY}`;
}</pre>
<h3 id="Result">Result</h3>
<p>{{EmbedLiveSample("Example")}}</p>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('CSSOM View','#dom-mouseevent-clientx', 'clientX')}}</td>
<td>{{Spec2('CSSOM View')}}</td>
<td>Redefines {{domxref("MouseEvent")}} from <code>long</code> to <code>double</code>.</td>
</tr>
<tr>
<td>{{SpecName('DOM3 Events','#widl-MouseEvent-clientX','MouseEvent.clientX')}}</td>
<td>{{Spec2('DOM3 Events')}}</td>
<td>No change from {{SpecName('DOM2 Events')}}.</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Events','#Events-MouseEvent','MouseEvent.clientX')}}</td>
<td>{{Spec2('DOM2 Events')}}</td>
<td>Initial definition.</td>
</tr>
</tbody>
</table>
<h2 id="브라우저_호환성">브라우저 호환성</h2>
{{호환("api')MouseEvent.clientX")}}</div>
<h2 id="참고_항목">참고 항목</h2>
<ul>
<li>{{ domxref("MouseEvent") }}</li>
<li>{{domxref("MouseEvent.clientY","clientY")}}</li>
<li>{{domxref("MouseEvent.screenX","screenX")}} / {{domxref("MouseEvent.screenY","screenY")}}</li>
</ul>
|