This commit is contained in:
parent
18622ee8c6
commit
36ba0c330f
16
game/game.js
16
game/game.js
|
@ -3748,10 +3748,7 @@
|
|||
if(lib.config.cheat&&!_status.connectMode){
|
||||
cheat.i();
|
||||
}
|
||||
else if(lib.config.debug){
|
||||
cheat.i();
|
||||
}
|
||||
else{
|
||||
else if(!lib.config.debug){
|
||||
lib.cheat=window.cheat;
|
||||
delete window.cheat;
|
||||
}
|
||||
|
@ -3783,12 +3780,21 @@
|
|||
}
|
||||
if(!mode[lib.config.mode]){
|
||||
window.inSplash=true;
|
||||
var clickedNode=false;
|
||||
var proceeded=false;
|
||||
var clickNode=function(){
|
||||
if(clickedNode) return;
|
||||
clickedNode=true;
|
||||
this.classList.add('clicked');
|
||||
lib.config.mode=this.link;
|
||||
game.saveConfig('mode',this.link);
|
||||
splash.delete();
|
||||
delete window.inSplash;
|
||||
lib.init.js(lib.assetURL+'mode',lib.config.mode,proceed);
|
||||
this.addEventListener('webkitTransitionEnd',function(){
|
||||
if(proceeded) return;
|
||||
proceeded=true;
|
||||
lib.init.js(lib.assetURL+'mode',lib.config.mode,proceed);
|
||||
});
|
||||
}
|
||||
var downNode=function(){
|
||||
this.classList.add('glow');
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
window.noname_update={
|
||||
version:'1.8.3.0',
|
||||
version:'1.8.3.1',
|
||||
changeLog:[
|
||||
'风火林山联机',
|
||||
'bug修复'
|
||||
'修复重连问题'
|
||||
]
|
||||
}
|
||||
|
|
|
@ -60,16 +60,22 @@ table{table-layout: fixed;}
|
|||
margin-left:10px;
|
||||
margin-right:10px;
|
||||
position: relative;
|
||||
transition: all 0.8s;
|
||||
}
|
||||
#splash>div:not(.hidden){
|
||||
animation: splash 0.5s;
|
||||
-webkit-animation: splash 0.5s;
|
||||
}
|
||||
/*#splash>div:not(.hidden){
|
||||
animation: splash 0.7s;
|
||||
-webkit-animation: splash 0.7s;
|
||||
}*/
|
||||
#splash>div:hover{
|
||||
transform: scale(1.02);
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
#splash>div.clicked{
|
||||
transform: translateY(-20px) scale(1.5);
|
||||
transition: all 0.3s;
|
||||
opacity: 0;
|
||||
}
|
||||
#splash>div.hidden{
|
||||
transform: translateY(-200px);
|
||||
transform: translateY(-300px);
|
||||
}
|
||||
#splash>div>.splashtext{
|
||||
font-family: 'huangcao','xinwei';
|
||||
|
@ -1664,8 +1670,8 @@ div:hover>.wunature{
|
|||
from {transform:perspective(1200px) rotateY(-90deg) translateX(150px)}
|
||||
to{transform:perspective(1200px) rotateY(0deg) translateX(0)}
|
||||
}
|
||||
@keyframes splash{from {opacity: 0;transform: translateY(-200px)}}
|
||||
@-webkit-keyframes splash{from {opacity: 0;transform: translateY(-200px)}}
|
||||
@keyframes splash{from {opacity: 0;transform:translateY(-300px)}}
|
||||
@-webkit-keyframes splash{from {opacity: 0;transform:translateY(-300px)}}
|
||||
@keyframes game_start{from {opacity: 0;}}
|
||||
@-webkit-keyframes game_start{from {opacity: 0;}}
|
||||
@keyframes equip_hover{0% {opacity: 0;}50% {opacity: 0;}}
|
||||
|
|
|
@ -1102,6 +1102,7 @@ mode.identity={
|
|||
player:{
|
||||
$dieAfter:function(){
|
||||
if(_status.video) return;
|
||||
alert(1)
|
||||
if(!this.node.dieidentity){
|
||||
var node=ui.create.div('.damage.dieidentity',get.translation(this.identity+'2'),this);
|
||||
ui.refresh(node);
|
||||
|
|
Loading…
Reference in New Issue