This commit is contained in:
parent
c816671822
commit
8b935307f9
|
@ -56,6 +56,7 @@ window.config={
|
||||||
hover_handcard:true,
|
hover_handcard:true,
|
||||||
hover_all:true,
|
hover_all:true,
|
||||||
right_info:true,
|
right_info:true,
|
||||||
|
longpress_info:true,
|
||||||
long_info:true,
|
long_info:true,
|
||||||
background_music:'music_default',
|
background_music:'music_default',
|
||||||
background_audio:true,
|
background_audio:true,
|
||||||
|
|
18
game/game.js
18
game/game.js
|
@ -288,6 +288,13 @@
|
||||||
auto:'托管',
|
auto:'托管',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
longpress_info:{
|
||||||
|
name:'长按显示信息',
|
||||||
|
init:true,
|
||||||
|
unfrequent:true,
|
||||||
|
restart:true,
|
||||||
|
intro:'长按后弹出菜单',
|
||||||
|
},
|
||||||
right_info:{
|
right_info:{
|
||||||
name:'右键显示信息',
|
name:'右键显示信息',
|
||||||
init:true,
|
init:true,
|
||||||
|
@ -401,6 +408,7 @@
|
||||||
map.hoveration.hide();
|
map.hoveration.hide();
|
||||||
map.right_info.hide();
|
map.right_info.hide();
|
||||||
map.right_click.hide();
|
map.right_click.hide();
|
||||||
|
map.longpress_info.show();
|
||||||
map.swipe.show();
|
map.swipe.show();
|
||||||
if(lib.config.swipe){
|
if(lib.config.swipe){
|
||||||
map.swipe_up.show();
|
map.swipe_up.show();
|
||||||
|
@ -420,6 +428,7 @@
|
||||||
map.hover_all.show();
|
map.hover_all.show();
|
||||||
map.right_info.show();
|
map.right_info.show();
|
||||||
map.right_click.show();
|
map.right_click.show();
|
||||||
|
map.longpress_info.hide();
|
||||||
if(!config.hover_all){
|
if(!config.hover_all){
|
||||||
map.hover_handcard.hide();
|
map.hover_handcard.hide();
|
||||||
map.hoveration.hide();
|
map.hoveration.hide();
|
||||||
|
@ -35548,7 +35557,7 @@
|
||||||
time:get.utc()
|
time:get.utc()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(window.ForceTouch){
|
if(window.ForceTouch&&!_status.paused2&&!_status.forcetouchinterval){
|
||||||
_status.forcetouchinterval=setInterval(ui.click.forcetouch,30);
|
_status.forcetouchinterval=setInterval(ui.click.forcetouch,30);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -36367,11 +36376,16 @@
|
||||||
if(this._longpresstimeout){
|
if(this._longpresstimeout){
|
||||||
clearTimeout(this._longpresstimeout);
|
clearTimeout(this._longpresstimeout);
|
||||||
}
|
}
|
||||||
this._longpresstimeout=setTimeout(ui.click.longpresscallback,500);
|
if(lib.config.longpress_info){
|
||||||
|
this._longpresstimeout=setTimeout(ui.click.longpresscallback,500);
|
||||||
|
}
|
||||||
this._longpressevent=e;
|
this._longpressevent=e;
|
||||||
if(_status.longpressing&&_status.longpressing!=this){
|
if(_status.longpressing&&_status.longpressing!=this){
|
||||||
ui.click.longpresscancel.call(_status.longpressing);
|
ui.click.longpresscancel.call(_status.longpressing);
|
||||||
}
|
}
|
||||||
|
if(window.ForceTouch&&!_status.paused2&&!_status.forcetouchinterval){
|
||||||
|
_status.forcetouchinterval=setInterval(ui.click.forcetouch,30);
|
||||||
|
}
|
||||||
_status.longpressing=this;
|
_status.longpressing=this;
|
||||||
},
|
},
|
||||||
longpresscallback:function(){
|
longpresscallback:function(){
|
||||||
|
|
Loading…
Reference in New Issue