前端第五次作业
#player1 {
position: absolute;
top: 100px;
left: 100px;
width: 150px;
height: 150px;
background-image: url('img/player1.gif');
background-size: cover;
}
document.oncontextmenu = new Function("event.returnValue=false");//禁用鼠标右键
$(document).ready(function () {
var isPlayer1 = true; // 标记当前角色状态,默认为 player1
$('#player1').dblclick(function () ...
前端第四次作业
body {
font-size: 13px;
line-height: 25px;
}
table {
border-top: 1px solid #333;
border-left: 1px solid #333;
width: 300px;
}
td {
border-right: 1px solid #333;
border-bottom: 1px solid #333;
}
.center {
text-align: center;
}
function addRow() {
//219970523彭景
var newRow = $(""); // ...