This commit is contained in:
parent
53782b30e2
commit
a8d37bf22e
20
game/game.js
20
game/game.js
|
@ -17591,12 +17591,15 @@
|
|||
var text=document.createElement('div');
|
||||
text.style.width='194px';
|
||||
text.style.height='104px';
|
||||
text.style.marginTop='12px';
|
||||
text.style.padding='3px';
|
||||
text.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px, rgba(0, 0, 0, 0.45) 0 0 0';
|
||||
text.style.borderRadius='2px';
|
||||
text.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px';
|
||||
text.style.textAlign='left';
|
||||
text.style.webkitUserSelect='initial';
|
||||
text.style.overflow='scroll';
|
||||
text.style.position='absolute';
|
||||
text.style.left='30px';
|
||||
text.style.top='12px';
|
||||
page.appendChild(text);
|
||||
|
||||
var caption=ui.create.div('','输入命令',page);
|
||||
|
@ -17604,13 +17607,18 @@
|
|||
caption.style.position='absolute';
|
||||
caption.style.width='120px';
|
||||
caption.style.top='129px';
|
||||
caption.style.left='calc(50% - 68px)';
|
||||
caption.style.left='64px';
|
||||
var text2=document.createElement('input');
|
||||
text2.style.width='200px';
|
||||
text2.style.width='200px';
|
||||
text2.style.height='20px';
|
||||
text2.style.padding='0';
|
||||
text2.style.position='absolute';
|
||||
text2.style.top='159px';
|
||||
text2.style.left='calc(50% - 102px)';
|
||||
text2.style.top='162px';
|
||||
text2.style.left='30px';
|
||||
text2.style.resize='none';
|
||||
text2.style.border='none';
|
||||
text2.style.borderRadius='2px';
|
||||
text2.style.boxShadow='rgba(0, 0, 0, 0.2) 0 0 0 1px';
|
||||
var g={};
|
||||
var logs=[];
|
||||
var logindex=-1;
|
||||
|
|
|
@ -48,6 +48,7 @@ background.pack={
|
|||
zhulian_bg:'璧合',
|
||||
zhulin_bg:'竹林',
|
||||
shengshi_bg:'盛世',
|
||||
xueji_bg:'雪霁',
|
||||
yinxiang_bg:'印象',
|
||||
huangtian_bg:'黄天',
|
||||
};
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
window.noname_update={
|
||||
version:'1.8.1.1',
|
||||
version:'1.8.1.2',
|
||||
changeLog:[
|
||||
'自由选将改进'
|
||||
'自由选将改进',
|
||||
'命令输入改进'
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue