Данный документ меняет цвета ячеек по клику на таблицу. Необходимо изменить функцию так, чтобы цвета менялись через промежуток времени и бесконечно. Очень нужно. Срочно..
<html>
<head>
<meta http-equiv="Content-Script-Type" content="text/JavaScript; charset=windows-1251" />
<script>
function ChangeColor(BlueTable)
{
var TableId = document.all[IdName].style;
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
No Pride
Данный документ меняет цвета ячеек по клику на таблицу. Необходимо изменить функцию так, чтобы цвета менялись через промежуток времени и бесконечно. Очень нужно. Срочно..
<html>
<head>
<meta http-equiv="Content-Script-Type" content="text/JavaScript; charset=windows-1251" />
<script>
function ChangeColor(BlueTable)
{
var TableId = document.all[IdName].style;
TableId = document.all['Test'].style;
TableId.backgroundColor = 'DarkGreen';
TableId = document.all['Test1'].style;
TableId.backgroundColor = 'Limegreen';
TableId = document.all['Test3'].style;
TableId.backgroundColor = 'LightGreen';
TableId = document.all['Test4'].style;
TableId.backgroundColor = 'Green';
TableId = document.all['Test5'].style;
TableId.backgroundColor = 'GreenYellow';
TableId = document.all['BlueTable'].style;
TableId.borderColor= 'green';
}
</SCRIPT>
</head>
<body>
<style>
#Test
{
Background-color : blue;
}
#Test1
{
Background-color: #1E90FF;
}
#Test3
{
Background-color : #CED8F6;
}
#Test4
{
Background-color: #6495ED;
}
#Test5
{
Background-color : #00BFFF;
}
#Test6
{
Background-color ="#FFFFFF";
}
</style>
<table align="center" width="400" height="100" border=8 bordercolor="blue" id="BlueTable" onclick="ChangeColor" >
<tr>
<td id = "Test">синяя</td>
<td id = "Test1">темно-голубая</td>
<td id = "Test3">светло-голубая</td>
</tr>
<tr>
<td id = "Test4">светло-синяя</td>
<td id = "Test5">голубая</td>
<td id = "Test6">белая</td>
</tr>
</table>
</body>
</html>
Link to comment
Share on other sites
4 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.