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
bgraf
Здравствуйте .
Хочу с помощью JavaScript изменить цвет ссылки при наведении на нее мышкой .
Вот код , но он не работает .
#menu_stile {
font-family: Arial;
color: #0C335F;
}
function color_mouse_on(id)
{
id.style.color = "EE8817";
}
function color_mouse_off(id)
{
id.style.color = "0C335F";
}
<a href="main.html" onmouseover="color_mouse_on(this)" onmouseout="color_mouse_off(this)" style="text-decoration:none;" target="hero">
<strong><font id="menu_stile" size="2">Cement</font></strong>
</a><br>
Подскажите что делать. Спасибо
Link to comment
Share on other sites
2 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.