hos
https://gyazo.com/f65f70cc25cd7465f3a1ac37d098ff57
※この個人ページをつくっておくとCtrl+iで上の画像をアイコンとしていつでも出せる
#member
自己紹介
千葉県香取市出身
1977年生まれ
埼玉県さいたま市在住
理念
世の中のワクワク量を増やす
その他
/wkwknote/hosに記載
----
code:script.js
p=0;
document.ontouchstart= function(e){
p=e.touches0.pageX;
if(e.touches.length==2) document.querySelector(' atitle="Delete" ').click();
}
document.ontouchmove= function(e){
x=e.touches0.pageX;
if(x-p>4){pressKey(39);p=x;}
if(p-x>4){pressKey(37);p=x;}
}
function pressKey( code ){
k = document.createEvent("Event");
k.initEvent( "keydown" ,true,true);
k.keyCode = code;
document.getElementById( "text-input" ).dispatchEvent(k);
}