我想要一个图像,当鼠标移动到它的左侧和右侧时,它会变成三个图像。
- Left 当光标在左侧时显示左箭头
- 当光标在中心时,居中显示向上箭头
- Right 当光标在右侧时显示右箭头
我发现了一个运行良好的 jQuery 脚本。我对其进行了一些编辑,并让它在鼠标移动时显示左右箭头。我只剩下中间部分要做,不知道如何添加。
这就是我所拥有的。(另见 jsFiddle 页面:http: //jsfiddle.net/WhkJB/)
var image_src = {
left: "http://i.imgur.com/ubKrq.jpg",
right: "http://i.imgur.com/SxHCS.jpg",
};
$(document).mousemove(function(event){
var mloc = {
x: event.pageX,
y: event.pageY
};
if(
(mloc.x >= 0 && mloc.x <= $(document).width()/2 )
){
$(".arrow").attr("src", image_src.left);
}else if(
(mloc.x >= $(document).width()/2 && mloc.x <= $(document).width()) &&
(mloc.y >= 0 && mloc.y <= $(document).height()/2)
){
$(".arrow").attr("src", image_src.right);
}
});
另一个问题 - 当您将鼠标移动到图像下方时,它不起作用。有没有办法让它在整个页面上移动?
任何帮助将不胜感激。