これは私のコードです。
Javascript:
var table = document.getElementById("Table-1");
var rowCount = table.rows.length;
for(var i=0;i<6;i++) {
row = table.insertRow(rowCount);
cell1 = row.insertCell(0);
cell1.name = "animate";
cell1.id = i ;
var content = document.createElement("output");
content.innerHTML = i ;
cell1.appendChild(content);
rowCount++;
// if (i%2 == 0) {
setInterval(function() {
$(input[name="animate"]).animate( { backgroundColor: '#f08080' }, 'slow')
.animate( { backgroundColor: 'red' }, 'slow');
}, 1000);
// }
}
HTML:
<table id="Table-1" border="1">
<tr>
<th><center>List</center></th>
</tr>
</table>
</ p>
javascriptを使用してテーブルを作成し、1秒ごとに数行をアニメーション化したかったのですが、すべての行で機能するわけではありません。ただし、特定の行をアニメーション化すると機能します。
ありがとうございました。