我想按住鼠标并将其光标更改为图像。然后,当我释放鼠标时,我希望它恢复到默认值。
这是我到目前为止的代码。除非您右键单击然后单击鼠标左键,否则它不起作用。诡异的。
查询
$("#background").on("mousedown", function () {
$(this).addClass("mouseDown");
}).on("mouseup", function () {
$(this).removeClass("mouseDown");
});
CSS
.mouseDown{
cursor:progress ; // I will eventually want an image file but I used this for brevity
}
#background{
width:500px;
height:500px;
position:absolute;
background-color:red;
}