Mobile browser touch gestures

Add touch gestures to your mobile browser, ready to use and no configuration required. In addition to general gestures, there are also special gestures for text, images, and videos. Do you still think it's not enough? Support adding personalized gestures that belong to you. We recommend using Lemur browser, Yandex browser, and Kiwi browser.

< Feedback on Mobile browser touch gestures

Review: Good - script works

§
Posted: 2020-10-05

大佬,能不能添加一个双击屏幕左右两侧前进或者后退10s的功能?感恩!

L.XavierAuthor
§
Posted: 2020-10-10

这个和双击退出全屏冲突,而且软件自带这个功能,你将双击全屏的代码删除即可。

删除下面这一段即可,你可以用webkitFullscreenElement作为关键词查找。


else{
if(document.webkitFullscreenElement){
e.preventDefault();
document.webkitExitFullscreen();
setTimeout(function(){
Ti=document.createElement('input');
document.body.appendChild(Ti);
Ti.setAttribute('value',videoPlayer.src);
Ti.select();
document.execCommand('copy');
document.body.removeChild(Ti);
},500);
}
else if(videoPlayer){videoPlayer.webkitRequestFullScreen();}
else if(iframeEle.length>0){GM_setValue('fullscreen',Date());}

Post reply

Sign in to post a reply.