【发布时间】:2014-04-09 23:55:46
【问题描述】:
我的网页上有一张图片就是这张图片
当我将鼠标悬停在图像上时,它应该转向这个,
它会这样做,但是当我将鼠标悬停时它会消失,然后大约 2 秒后会出现第二张图像。我怎样才能让它立即出现?是因为我的网速可能很慢吗?
这是我的 CSS,
#right_slide_arrow{
width:150px;
height:150px;
float:left;
margin-top:140px;
background:url(../images/right_arrow.png) no-repeat;
}
#right_slide_arrow:hover {
cursor:pointer;
background:url(../images/right_arrow_hover.png) no-repeat;
}
【问题讨论】: