This commit is contained in:
parent
01885ffad1
commit
6a264add30
|
@ -24,8 +24,7 @@ window.config={
|
|||
'september_bg','xueji_bg','yinxiang_bg','chunhui_bg',
|
||||
'grass_bg','huangtian_bg'],
|
||||
image_background_filter:['default','blur','gray','sepia','invert','saturate','contrast','hue','brightness'],
|
||||
background_music:['music_default','music_diaochan','music_shezhan',
|
||||
'music_danji','music_random','music_off']
|
||||
background_music:['music_default','music_diaochan','music_shezhan','music_danji','music_random','music_off']
|
||||
},
|
||||
translate:{
|
||||
character_play_config:'技能卡牌',
|
||||
|
@ -366,3 +365,4 @@ window.play={};
|
|||
window.background={};
|
||||
window.music={};
|
||||
window.font={};
|
||||
window.theme={};
|
||||
|
|
14
game/game.js
14
game/game.js
|
@ -443,11 +443,7 @@
|
|||
theme:{
|
||||
name:'主题',
|
||||
init:'woodden',
|
||||
item:{
|
||||
woodden:'木纹',
|
||||
music:'音乐',
|
||||
simple:'简约',
|
||||
},
|
||||
item:{},
|
||||
onclick:function(theme){
|
||||
game.saveConfig('theme',theme);
|
||||
ui.arena.hide();
|
||||
|
@ -3067,6 +3063,12 @@
|
|||
delete lib.configMenu.audio.config.background_music.item.music_custom;
|
||||
}
|
||||
}
|
||||
if(theme&&theme.pack){
|
||||
for(i in theme.pack){
|
||||
lib.configMenu.appearence.config.theme.item[i]=theme.pack[i];
|
||||
}
|
||||
}
|
||||
|
||||
ui.fontsheet=document.createElement('style');
|
||||
document.head.appendChild(ui.fontsheet);
|
||||
if(font&&font.pack){
|
||||
|
@ -3787,7 +3789,7 @@
|
|||
clickedNode=true;
|
||||
lib.config.mode=this.link;
|
||||
game.saveConfig('mode',this.link);
|
||||
splash.delete();
|
||||
splash.delete(1000);
|
||||
delete window.inSplash;
|
||||
|
||||
var proceed2=function(){
|
||||
|
|
|
@ -62,4 +62,9 @@ font.pack={
|
|||
xiaozhuan:'小篆',
|
||||
xinwei:'新魏',
|
||||
huangcao:'黄草',
|
||||
};
|
||||
theme.pack={
|
||||
woodden:'木纹',
|
||||
music:'音乐',
|
||||
simple:'简约',
|
||||
}
|
||||
|
|
|
@ -53,6 +53,9 @@ table{table-layout: fixed;}
|
|||
overflow-x: scroll;
|
||||
white-space: nowrap;
|
||||
}
|
||||
#splash.removing{
|
||||
pointer-events: none;
|
||||
}
|
||||
#splash>div{
|
||||
width:100px;
|
||||
height:300px;
|
||||
|
@ -62,10 +65,6 @@ table{table-layout: fixed;}
|
|||
position: relative;
|
||||
transition: all 0.8s;
|
||||
}
|
||||
/*#splash>div:not(.hidden){
|
||||
animation: splash 0.7s;
|
||||
-webkit-animation: splash 0.7s;
|
||||
}*/
|
||||
#splash>div:hover{
|
||||
transform: translateY(-20px);
|
||||
}
|
||||
|
@ -75,7 +74,13 @@ table{table-layout: fixed;}
|
|||
opacity: 0;
|
||||
}
|
||||
#splash>div.hidden{
|
||||
transform: translateY(-300px);
|
||||
transform: translateY(-300px) scale(0.5);
|
||||
}
|
||||
#splash.low_performance>div.hidden{
|
||||
transform: scale(0.8);
|
||||
}
|
||||
#splash.low_performance>div{
|
||||
transition: all 0.5s;
|
||||
}
|
||||
#splash>div>.splashtext{
|
||||
font-family: 'huangcao','xinwei';
|
||||
|
|
Loading…
Reference in New Issue