マウスを押したままにして、カーソルを画像に変更したい。次に、マウスを離すと、デフォルトに戻ります。
ここに私がこれまでに持っているコードがあります。右クリックしてからマウスを左クリックしないと機能しません。変。
Jクエリ
$("#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;
}