-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
66 lines (51 loc) · 2.95 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DOM Event Viewing Tools</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" type="text/css" href="index.css" />
</head>
<body id="body">
<h1>DOM Event Viewers</h1>
<div class="container">
<div class="row">
<div class="sideimage"><img src="images/key.png" width=100px"/></div>
<div class="viewer-list">
<span class="name"><a href="key-event-viewer.html">Key Event Viewer</a></span>
<span class="desc">View KeyboardEvents on a <code><input type="text"></code> element.</span>
<span class="desc"><code>keydown</code>, <code>keypress</code>, <code>keyup</code>, <code>textinput</code>, <code>beforeinput</code>, <code>input</code>, <code>compositionstart</code>, <code>compositionupdate</code>, <code>compositionend</code></span>
<span class="name2"><a href="key-event-viewer-ce.html">Key Event Viewer (for contenteditable)</a></span>
<span class="desc">Same as the standard Key Event Viewer except targetting a <code><div contenteditable="true"></code> element.</span>
</div>
</div> <!-- row -->
<div class="row">
<div class="sideimage"><img src="images/mouse.png" width=100px"/></div>
<div class="viewer-list">
<span class="name"><a href="mouse-event-viewer.html">Mouse Event Viewer</a></span>
<span class="desc">View MouseEvents on a set of overlapping <code><div></code>s.</span>
<span class="desc"><code>mousedown</code>, <code>mouseenter</code>, <code>mouseleave</code>, <code>mousemove</code>, <code>mouseout</code>, <code>mouseover</code>, <code>mouseup</code></span>
<span class="name2"><a href="mouse-event-viewer-shadow.html">Mouse Event Viewer (with shadow DOM)</a></span>
<span class="desc">Same as the standard Mouse Event Viewer except with additional shadow DOM elements.</span>
<span class="name2"><a href="wheel-event-viewer.html">Wheel Event Viewer</a></span>
<span class="desc">View mouse scroll <code>wheel</code> events.</span>
</div>
</div> <!-- row -->
<div class="row">
<div class="sideimage"><img src="images/focus-blur.png" width=100px"/></div>
<div class="viewer-list">
<span class="name"><a href="focus-event-viewer.html">Focus Event Viewer</a></span>
<span class="desc">View FocusEvents between two <code><input></code> fields enclosed in a <code><div></code>.</span>
<span class="desc"><code>blur</code>, <code>focus</code>, <code>focusin</code>, <code>focusout</code>, <code>DOMFocusIn</code>, <code>DOMFocusOut</code></span>
</div>
</div> <!-- row -->
</div> <!-- container -->
<p>
To report a bug or a submit feature request for any of these tools,
<a href="https://github.com/garykac/dom-event-viewer/issues/new">file an issue on Github</a>.
</p>
<p>
Interested in viewing dome vents? Try <a href="https://www.google.com/search?q=dome+vent&source=lnms&tbm=isch">this search</a> instead.
</p>
</body>
</html>