dreamweaver 如何实现在鼠标移到图片上时,图片下移几个像素,鼠标移开后有回复原位?

http://www1.wodeban.com/class/0/index.jsp?classid=053102723
2025-01-05 08:14:28
推荐回答(3个)
回答1:

可以用jQuery实现:
$(function(){
$(".box").mouseover(function(){
$(".img").css({"margin-top":"3px"});
})
$(".boxs").mouseout(function(){
$(".img").css({"margin-top":"0px"});
})
})

回答2:

给超链接属性 a:hover 定义的时候margin-top 几个象数就好了

回答3:

你给目标层增加一个a:hover样式,在样式里添加margin-top:5px;就可以了