blob: e364ee08d620c4f6e455b400fe342a2ebb624137 (
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
|
---
title: Element.onwheel
slug: Web/API/GlobalEventHandlers/onwheel
tags:
- API
- DOM
- Gestionnaires d'évènements
- Propriété
- évènements
translation_of: Web/API/GlobalEventHandlers/onwheel
original_slug: Web/API/Element/onwheel
---
<p>{{ ApiRef("DOM") }}</p>
<p>La propriété <code>onwheel</code> renvoie le code du gestionnaire d'évènements <code>onwheel</code> de l'élément courrant.</p>
<h2 id="Syntaxe">Syntaxe</h2>
<pre class="eval line-numbers language-html"><code class="language-html">element.onwheel = function() { .. }</code></pre>
<h2 id="Spécification">Spécification</h2>
<table class="spectable standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{SpecName('HTML WHATWG','webappapis.html#handler-onwheel','onwheel')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td> </td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Compatibilité des navigateurs</h2>
<p>{{Compat("api.GlobalEventHandlers.onwheel")}}</p>
<h2 id="See_also">Voir aussi</h2>
<ul>
<li><a href="/fr/docs/Web/API/Document/wheel_event">Document: <code>wheel</code> event</a></li>
<li><a href="/fr/docs/Web/API/Element/wheel_event">Element: <code>wheel</code> event</a></li>
</ul>
|