Is there a way to enhance my current css code for a mouseover link with a background image by adding a fade in and out effect? What's the most effective method to achieve this using jquery?
.sendB {
width: 100%;
height: 125px;
background: #5266EB url('/img/send.gif') no-repeat 50% 0;
margin-top: 22px;
float: left;
}
.sendB:hover {
width: 100%;
height: 125px;
background: #00CE00 url('/img/send.gif') no-repeat 50% -125px;
margin-top: 22px;
float: left;
}