This commit is contained in:
libccy 2017-11-28 12:44:38 +08:00
parent 187ee966d6
commit 924122a0ee
2 changed files with 33 additions and 2 deletions

View File

@ -18393,6 +18393,13 @@
dx=this.offsetLeft+this.offsetWidth/2-52-node.offsetLeft; dx=this.offsetLeft+this.offsetWidth/2-52-node.offsetLeft;
dy=this.offsetTop+this.offsetHeight/2-52-node.offsetTop; dy=this.offsetTop+this.offsetHeight/2-52-node.offsetTop;
if(get.is.mobileMe(this)){
dx+=get.cardOffset();
if(ui.arena.classList.contains('oblongcard')){
dy-=16;
}
}
} }
node.style.transitionDuration='0.8s'; node.style.transitionDuration='0.8s';
ui.refresh(node); ui.refresh(node);
@ -18796,6 +18803,12 @@
else{ else{
dx=this.offsetLeft+this.offsetWidth/2-52-nx; dx=this.offsetLeft+this.offsetWidth/2-52-nx;
dy=this.offsetTop+this.offsetHeight/2-52-ny; dy=this.offsetTop+this.offsetHeight/2-52-ny;
if(get.is.mobileMe(this)){
dx+=get.cardOffset();
if(ui.arena.classList.contains('oblongcard')){
dy-=16;
}
}
} }
if(node.style.transform&&node.style.transform!='none'&&node.style.transform.indexOf('translate')==-1){ if(node.style.transform&&node.style.transform!='none'&&node.style.transform.indexOf('translate')==-1){
node.style.transform+=' translate('+dx+'px,'+dy+'px)'; node.style.transform+=' translate('+dx+'px,'+dy+'px)';
@ -18834,6 +18847,12 @@
else{ else{
dx=this.offsetLeft+this.offsetWidth/2-52-nx; dx=this.offsetLeft+this.offsetWidth/2-52-nx;
dy=this.offsetTop+this.offsetHeight/2-52-ny; dy=this.offsetTop+this.offsetHeight/2-52-ny;
if(get.is.mobileMe(this)){
dx+=get.cardOffset();
if(ui.arena.classList.contains('oblongcard')){
dy-=16;
}
}
} }
if(node.style.transform&&node.style.transform!='none'&&node.style.transform.indexOf('translate')==-1){ if(node.style.transform&&node.style.transform!='none'&&node.style.transform.indexOf('translate')==-1){
node.style.transform+=' translate('+dx+'px,'+dy+'px)'; node.style.transform+=' translate('+dx+'px,'+dy+'px)';
@ -20106,6 +20125,13 @@
dx=player.offsetLeft+player.offsetWidth/2-52-this.offsetLeft; dx=player.offsetLeft+player.offsetWidth/2-52-this.offsetLeft;
dy=player.offsetTop+player.offsetHeight/2-52-this.offsetTop; dy=player.offsetTop+player.offsetHeight/2-52-this.offsetTop;
} }
if(get.is.mobileMe(player)){
dx+=get.cardOffset();
if(ui.arena.classList.contains('oblongcard')){
dy-=16;
}
}
if(this.style.transform&&this.style.transform!='none'&&this.style.transform.indexOf('translate')==-1){ if(this.style.transform&&this.style.transform!='none'&&this.style.transform.indexOf('translate')==-1){
this.style.transform+=' translate('+dx+'px,'+dy+'px)'; this.style.transform+=' translate('+dx+'px,'+dy+'px)';
@ -42748,6 +42774,11 @@
} }
return list; return list;
}, },
cardOffset:function(){
var x=ui.arena.getBoundingClientRect();
var y=ui.window.getBoundingClientRect();
return -y.width/2+(x.left+x.width/2);
},
colorspan:function(str){ colorspan:function(str){
if(str[0]=='#'){ if(str[0]=='#'){
var color; var color;

View File

@ -122,11 +122,11 @@ body{
.card:empty,.card.infohidden{ .card:empty,.card.infohidden{
background: url('../style/cardback/image/official.png'); background: url('../style/cardback/image/official.png');
background-size: cover; background-size: 100% 100%;
} }
.card.infohidden:not(.infoflip){ .card.infohidden:not(.infoflip){
background: url('../style/cardback/image/official2.png'); background: url('../style/cardback/image/official2.png');
background-size: cover; background-size: 100% 100%;
} }
#system>div>.glow { #system>div>.glow {