Jump to content
  • 0

изменение цвета при наведение


Ramshine
 Share

Question

Здравствуйте!!!

Собственно проблема такая: есть ячейка, в которой при наведении на которую мышкой изменяется фон, в этой ячейке есть ссылка, необходимо сделать так чтобы при наведении на ячеку менялся цвет ссылки. заранее спс за помощь. ниже прилагаю уже имеющийся код:

<!-- html -->
<table cellpadding="0" cellspacing="0">
<tr>
<td id="butL1" onMouseOver="this.style.background = 'red'" onMouseOut="this.style.background = 'blue'"><a href="#">Услуги</a></td>
</tr>
</table>

#butL1 a  {
font-size:11px;
color:#bad0e3;
text-decoration:none;
}
#butL1 a:hover {
font-size:11px;
color:#fff;
text-decoration:none;
}

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

вот некроссбраузерное решение, ослик ругается(((

мне что-то самому стало интересно)

<style>
#butL1:hover{
background: red;
}
#butL1:hover a{
color:blue;
}
#butL1{
background: blue;
}
#butL1 a {
font-size:13px;
color:#bad0e3;
text-decoration:none;
}
#butL1 a:hover {
font-size:13px;
color:#fff;
text-decoration:none;
}
</style>
<table cellpadding="0" cellspacing="0">
<tr>
<td id="butL1" width=100 height=100><a href="#">Услуги</a></td>
</tr>
</table>

Link to comment
Share on other sites

  • 0

<style>
#butL1:hover{
background: red;
}
#butL1:hover a{
color:blue;
}
#butL1.jshover a{
color:blue;
}
#butL1{
background: blue;
}
#butL1 a {
font-size:13px;
color:#bad0e3;
text-decoration:none;
}
#butL1 a:hover {
font-size:13px;
color:#fff;
text-decoration:none;
}

</style>

<script type="text/javascript">
jsHover = function() {
var hEls = document.getElementsByTagName("TD");
for (var i=0, len=hEls.length; i<len; i++) {
hEls[i].onmouseover=function() { this.className+=" jshover"; }
hEls[i].onmouseout=function() { this.className=this.className.replace(" jshover", ""); }
}
}
if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);
</script>

<table cellpadding="0" cellspacing="0">
<tr>
<td id="butL1" width=100 height=100><a href="#">Услуги</a></td>
</tr>
</table>

это чтобы ослик не ругался

Link to comment
Share on other sites

  • 0

html:

<table cellpadding="0" cellspacing="0">
<tr>
<td class=td_normal onMouseOver="over(this)" onMouseOut="out(this)"><a href="#">Услуги</a></td>
</tr>
</table>

JS:

function over(obj){
obj.className='td_hover';
}
function out(obj){
obj.className='td_normal';
}

CSS:

.td_hover{background-color:#ff0000}
.td_hover a{color:#ffffff}
.td_normal{background-color:#0000ff}
.td_normal a{color:green}

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy