<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[211311] trunk/Websites/webkit.org</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/211311">211311</a></dd>
<dt>Author</dt> <dd>dino@apple.com</dd>
<dt>Date</dt> <dd>2017-01-27 16:27:19 -0800 (Fri, 27 Jan 2017)</dd>
</dl>

<h3>Log Message</h3>
<pre>Add a simple demo for Touch stylus events
https://bugs.webkit.org/show_bug.cgi?id=167534

Reviewed by Simon Fraser.

* demos/touch/stylus.html: Added.</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkWebsiteswebkitorgChangeLog">trunk/Websites/webkit.org/ChangeLog</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li>trunk/Websites/webkit.org/demos/touch/</li>
<li><a href="#trunkWebsiteswebkitorgdemostouchstylushtml">trunk/Websites/webkit.org/demos/touch/stylus.html</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkWebsiteswebkitorgChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Websites/webkit.org/ChangeLog (211310 => 211311)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Websites/webkit.org/ChangeLog        2017-01-28 00:10:55 UTC (rev 211310)
+++ trunk/Websites/webkit.org/ChangeLog        2017-01-28 00:27:19 UTC (rev 211311)
</span><span class="lines">@@ -1,3 +1,12 @@
</span><ins>+2017-01-27  Dean Jackson  &lt;dino@apple.com&gt;
+
+        Add a simple demo for Touch stylus events
+        https://bugs.webkit.org/show_bug.cgi?id=167534
+
+        Reviewed by Simon Fraser.
+
+        * demos/touch/stylus.html: Added.
+
</ins><span class="cx"> 2017-01-27  Wenson Hsieh  &lt;wenson_hsieh@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Unreviewed, update scroll snapping demos to use current Module 1 spec
</span></span></pre></div>
<a id="trunkWebsiteswebkitorgdemostouchstylushtml"></a>
<div class="addfile"><h4>Added: trunk/Websites/webkit.org/demos/touch/stylus.html (0 => 211311)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Websites/webkit.org/demos/touch/stylus.html                                (rev 0)
+++ trunk/Websites/webkit.org/demos/touch/stylus.html        2017-01-28 00:27:19 UTC (rev 211311)
</span><span class="lines">@@ -0,0 +1,248 @@
</span><ins>+&lt;!DOCTYPE html&gt;
+&lt;html&gt;
+&lt;head&gt;
+&lt;title&gt;Touch and Stylus Events&lt;/title&gt;
+&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,initial-scale=1&quot;&gt;
+&lt;style&gt;
+body {
+    margin: 0;
+    padding: 0;
+    background-color: #eee;
+}
+
+#container {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100vw;
+    height: 100vh;
+    box-sizing: border-box;
+}
+
+#touches {
+    top: 0;
+    left: 0;
+    width: 100vw;
+    height: 100vh;
+    margin: 0;
+    padding: 0;
+}
+
+#touches div {
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 200px;
+    height: 200px;
+    margin-top: -100px;
+    margin-left: -100px;
+    will-change: transform;
+    transform: translate(0, 0);
+}
+
+#touches div svg.touch {
+    width: 200px;
+    height: 200px;
+}
+
+#touches div svg.touch circle {
+    cx: 100px;
+    cy: 100px;
+    fill: #cccf;
+    stroke: #aaa;
+    stroke-width: 1px;
+}
+
+#touches div.stylus svg.touch circle {
+    fill: #fccf;
+    stroke: #faa;
+}
+
+#touches div svg.touch line {
+    stroke: #666;
+    stroke-width: 4px;
+    stroke-linecap: round;
+}
+
+#touches div svg.altitude {
+    position: absolute;
+    top: -100px;
+    left: 50px;
+    width: 100px;
+    height: 100px;
+}
+
+#touches div svg.altitude line.x-axis {
+    stroke: green;
+    stroke-opacity: 0.6;
+    stroke-width: 2px;
+}
+
+#touches div svg.altitude line.angle {
+    stroke: #666;
+    stroke-width: 2px;
+}
+
+&lt;/style&gt;
+&lt;script&gt;
+
+const SVGNS = &quot;http://www.w3.org/2000/svg&quot;;
+
+var container;
+var touchObjects = {};
+
+class TouchObject {
+    constructor(touch) {
+        this.element = document.createElement(&quot;div&quot;);
+        this._touchType = touch.touchType;
+        this.root = document.createElementNS(SVGNS, &quot;svg&quot;);
+        this.root.setAttribute(&quot;class&quot;, &quot;touch&quot;);
+        this.touchCircle = document.createElementNS(SVGNS, &quot;circle&quot;);
+        this.root.appendChild(this.touchCircle);
+        if (this._touchType == &quot;stylus&quot;) {
+            this.element.className = touch.touchType;
+            this.line = document.createElementNS(SVGNS, &quot;line&quot;);
+            this.line.setAttribute(&quot;x1&quot;, 100);
+            this.line.setAttribute(&quot;y1&quot;, 100);
+            this._azimuthAngle = touch.azimuthAngle;
+            this.root.appendChild(this.line);
+
+            var altitudeDiagram = document.createElementNS(SVGNS, &quot;svg&quot;);
+            altitudeDiagram.setAttribute(&quot;class&quot;, &quot;altitude&quot;);
+            var screenAxis = document.createElementNS(SVGNS, &quot;line&quot;);
+            screenAxis.setAttribute(&quot;class&quot;, &quot;x-axis&quot;);
+            screenAxis.setAttribute(&quot;x1&quot;, 0);
+            screenAxis.setAttribute(&quot;y1&quot;, 100);
+            screenAxis.setAttribute(&quot;x2&quot;, 100);
+            screenAxis.setAttribute(&quot;y2&quot;, 100);
+            altitudeDiagram.appendChild(screenAxis);
+            this.altitudeLine = document.createElementNS(SVGNS, &quot;line&quot;);
+            this.altitudeLine.setAttribute(&quot;class&quot;, &quot;angle&quot;);
+            this.altitudeLine.setAttribute(&quot;x1&quot;, 1);
+            this.altitudeLine.setAttribute(&quot;y1&quot;, 99);
+            altitudeDiagram.appendChild(this.altitudeLine);
+            this._altitudeAngle = touch.altitudeAngle;
+            this.element.appendChild(altitudeDiagram);
+        }
+
+        this.element.appendChild(this.root);
+        this._x = 0;
+        this._y = 0;
+        this._size = 0;
+        touchObjects[touch.identifier] = this;
+        document.getElementById(&quot;touches&quot;).appendChild(this.element);
+        this._update();
+    }
+    get position() {
+        return {x: this._x, y: this._y};
+    }
+    set position(newPosition) {
+        this._x = newPosition.x;
+        this._y = newPosition.y;
+        this._update();
+    }
+    get size() {
+        return this._size;
+    }
+    set size(newSize) {
+        this._size = newSize;
+        this._update();
+    }
+    get azimuthAngle() {
+        return this._azimuthAngle;
+    }
+    set azimuthAngle(newAzimuthAngle) {
+        this._azimuthAngle = newAzimuthAngle;
+        this._update();
+    }
+    get altitudeAngle() {
+        return this._altitudeAngle;
+    }
+    set altitudeAngle(newAltitudeAngle) {
+        this._altitudeAngle = newAltitudeAngle;
+        this._update();
+    }
+    delete () {
+        document.getElementById(&quot;touches&quot;).removeChild(this.element);
+        this.element = null;
+    }
+    _update() {
+        this.element.style.transform = `translate(${this._x}px, ${this._y}px)`;
+        this.touchCircle.setAttribute(&quot;r&quot;, 50 + Math.round(this._size * 49));
+        if (this._touchType == &quot;stylus&quot;) {
+            var x = Math.round(100 - Math.cos(this._azimuthAngle) * 80);
+            var y = Math.round(100 - Math.sin(this._azimuthAngle) * 80);
+            this.line.setAttribute(&quot;x2&quot;, x);
+            this.line.setAttribute(&quot;y2&quot;, y);
+            x = Math.round(Math.cos(this._altitudeAngle) * 99);
+            y = Math.round(100 - Math.sin(this._altitudeAngle) * 99);
+            this.altitudeLine.setAttribute(&quot;x2&quot;, x);
+            this.altitudeLine.setAttribute(&quot;y2&quot;, y);
+        }
+    }
+}
+
+window.addEventListener(&quot;load&quot;, init, false);
+
+function handleTouchStart(event) {
+    event.preventDefault();
+    window.addEventListener(&quot;touchmove&quot;, handleTouchMove, false);
+    window.addEventListener(&quot;touchforcechange&quot;, handleTouchMove, false);
+    window.addEventListener(&quot;touchend&quot;, handleTouchEnd, false);
+    window.addEventListener(&quot;touchcancel&quot;, handleTouchEnd, false);
+
+    Array.from(event.changedTouches).forEach(function (touch) {
+        touchObjects[touch.identifier] = new TouchObject(touch);
+    });
+    updateTouches(event.touches);
+}
+
+function handleTouchMove(event) {
+    event.preventDefault();
+
+    updateTouches(event.touches);
+}
+
+function handleTouchEnd(event) {
+    event.preventDefault();
+    Array.from(event.changedTouches).forEach(function (touch) {
+        var touchObject = touchObjects[touch.identifier];
+        touchObject.delete();
+        touchObjects[touch.identifier] = undefined;
+    });
+    updateTouches(event.touches);
+
+    if (!event.touches || !event.touches.length) {
+        window.removeEventListener(&quot;touchmove&quot;, handleTouchMove);
+        window.removeEventListener(&quot;touchforcechange&quot;, handleTouchMove);
+        window.removeEventListener(&quot;touchend&quot;, handleTouchEnd);
+        window.removeEventListener(&quot;touchcancel&quot;, handleTouchEnd);
+    }
+}
+
+function updateTouches(touches) {
+    Array.from(touches).forEach(function (touch) {
+        var touchObject = touchObjects[touch.identifier];
+        if (touchObject) {
+            touchObject.position = {x: touch.pageX, y: touch.pageY};
+            if (touch.force) {
+                touchObject.size = touch.force;
+                touchObject.azimuthAngle = touch.azimuthAngle;
+                touchObject.altitudeAngle = touch.altitudeAngle;
+            }
+        }
+    });
+}
+
+function init() {
+    container = document.getElementById(&quot;container&quot;);
+    container.addEventListener(&quot;touchstart&quot;, handleTouchStart, false);
+}
+
+&lt;/script&gt;
+&lt;/head&gt;
+&lt;body&gt;
+&lt;div id=&quot;touches&quot;&gt;&lt;/div&gt;
+&lt;div id=&quot;container&quot;&gt;&lt;/div&gt;
+&lt;/body&gt;
+&lt;/html&gt;
</ins><span class="cx">Property changes on: trunk/Websites/webkit.org/demos/touch/stylus.html
</span><span class="cx">___________________________________________________________________
</span></span></pre></div>
<a id="svneolstyle"></a>
<div class="addfile"><h4>Added: svn:eol-style</h4></div>
<ins>+native
</ins><span class="cx">\ No newline at end of property
</span><a id="svnkeywords"></a>
<div class="addfile"><h4>Added: svn:keywords</h4></div>
<ins>+Date Revision
</ins><span class="cx">\ No newline at end of property
</span><a id="svnmimetype"></a>
<div class="addfile"><h4>Added: svn:mime-type</h4></div>
<ins>+text/html
</ins><span class="cx">\ No newline at end of property
</span></div>

</body>
</html>