This commit is contained in:
libccy 2017-03-19 03:14:07 +08:00
parent 78d90703a0
commit 4db4addecb
6 changed files with 21 additions and 6 deletions

View File

@ -2463,6 +2463,8 @@ window.noname_asset_list=[
'theme/style/cardback/image/new2.png', 'theme/style/cardback/image/new2.png',
'theme/style/cardback/image/official.png', 'theme/style/cardback/image/official.png',
'theme/style/cardback/image/official2.png', 'theme/style/cardback/image/official2.png',
'theme/style/cardback/image/ol.png',
'theme/style/cardback/image/ol2.png',
'theme/style/hp/image/emotion1.png', 'theme/style/hp/image/emotion1.png',
'theme/style/hp/image/emotion2.png', 'theme/style/hp/image/emotion2.png',
'theme/style/hp/image/emotion3.png', 'theme/style/hp/image/emotion3.png',

View File

@ -1086,12 +1086,13 @@
item:{ item:{
default:'默认', default:'默认',
custom:'自定', custom:'自定',
// wood:'木纹', wood:'木纹',
// music:'音乐', music:'音乐',
official:'原版', official:'原版',
// new:'新版', // new:'新版',
// feicheng:'废城', // feicheng:'废城',
liusha:'流沙', liusha:'流沙',
ol:'手杀',
}, },
visualBar:function(node,item,create,switcher){ visualBar:function(node,item,create,switcher){
if(node.created){ if(node.created){
@ -1167,6 +1168,7 @@
case 'feicheng':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/feicheng.png');break; case 'feicheng':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/feicheng.png');break;
case 'official':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/official.png');break; case 'official':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/official.png');break;
case 'liusha':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/liusha.png');break; case 'liusha':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/liusha.png');break;
case 'ol':node.className='button character';node.setBackgroundImage('theme/style/cardback/image/ol.png');break;
case 'wood':node.className='button card fullskin';node.setBackgroundImage('theme/woodden/wood.jpg');node.style.backgroundSize='initial';break; case 'wood':node.className='button card fullskin';node.setBackgroundImage('theme/woodden/wood.jpg');node.style.backgroundSize='initial';break;
case 'music':node.className='button card fullskin';node.setBackgroundImage('theme/music/wood3.png');break; case 'music':node.className='button card fullskin';node.setBackgroundImage('theme/music/wood3.png');break;
} }

View File

@ -91,12 +91,13 @@ window.noname_source_list=[
'theme/style/card/image/new.png', 'theme/style/card/image/new.png',
'theme/style/cardback/custom.css', 'theme/style/cardback/custom.css',
'theme/style/cardback/default.css', 'theme/style/cardback/default.css',
'theme/style/cardback/music.css',
'theme/style/cardback/official.css',
'theme/style/cardback/wood.css',
'theme/style/cardback/new.css',
'theme/style/cardback/feicheng.css', 'theme/style/cardback/feicheng.css',
'theme/style/cardback/liusha.css', 'theme/style/cardback/liusha.css',
'theme/style/cardback/music.css',
'theme/style/cardback/new.css',
'theme/style/cardback/ol.css',
'theme/style/cardback/official.css',
'theme/style/cardback/wood.css',
'theme/style/cardback/image/feicheng.png', 'theme/style/cardback/image/feicheng.png',
'theme/style/cardback/image/feicheng2.png', 'theme/style/cardback/image/feicheng2.png',
'theme/style/cardback/image/liusha.png', 'theme/style/cardback/image/liusha.png',
@ -105,6 +106,8 @@ window.noname_source_list=[
'theme/style/cardback/image/new2.png', 'theme/style/cardback/image/new2.png',
'theme/style/cardback/image/official.png', 'theme/style/cardback/image/official.png',
'theme/style/cardback/image/official2.png', 'theme/style/cardback/image/official2.png',
'theme/style/cardback/image/ol.png',
'theme/style/cardback/image/ol2.png',
'theme/style/hp/custom.css', 'theme/style/hp/custom.css',
'theme/style/hp/default.css', 'theme/style/hp/default.css',
'theme/style/hp/emotion.css', 'theme/style/hp/emotion.css',

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

View File

@ -0,0 +1,8 @@
.card:empty,.card.infohidden{
background: url('image/ol.png');
background-size: cover;
}
.card.infohidden:not(.infoflip){
background: url('image/ol2.png');
background-size: cover;
}