game/dress.js

80 lines
2.0 KiB
JavaScript
Raw Normal View History

2022-06-06 21:30:34 +00:00
var dress = {
start:function() {
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
$('#main1').html( this.htmlMainOne() );
},
//
titleMenu:function(data) {
},
//
htmlMainOne:function() {
var html = '';
//
var effs = '';
//
html += '<table width="240" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td width="60"><table width="60" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td width="60" height="60">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="40">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'</table></td>'+
'<td width="120"><table width="120" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td width="120" height="10"></td>'+
'</tr>'+
'<tr>'+
'<td width="120" height="10"></td>'+
'</tr>'+
'<tr>'+
'<td width="120" onclick="dress.titleMenu(['+
'[\'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>\',\'dress.changeLogin();\'],'+
'[\'<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>\',\'dress.changeSex();\']'+
']);" height="220" style="background-image:url(\'https://img.new-combats.com/i/obraz/' + u.info.sex + '/' + u.info.shadow + '\');" valign="top">'+effs+'</td>'+
'</tr>'+
'<tr>'+
'<td width="120" height="40">&nbsp;</td>'+
'</tr>'+
'</table></td>'+
'<td width="60"><table width="60" border="0" cellspacing="0" cellpadding="0">'+
'<tr>'+
'<td width="60" height="20">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="20">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="20">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="40">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'<tr>'+
'<td height="60">&nbsp;</td>'+
'</tr>'+
'</table></td>'+
'</tr>'+
'</table>';
//
return html;
}
};