是否可以将我现有的CSS用作带有背景图像的mouseover链接,并使其淡入和淡出?淡入/淡出的最佳方法是哪种?我已经在使用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;
}

最佳答案

我认为您无法使用JavaScript访问伪类。

但是,如果将选择器也更改为也包含.sendB.hover,则可以使用jQuery进行选择。

要知道的一件事是您不能淡化背景图像。您将需要淡化实际图像或带有背景图像的元素。您需要使用绝对定位。

09-13 11:39