我有一个无法工作的 JSFiddle 示例:http: //jsfiddle.net/bjacobs/KDVvN/28/
我希望元素在鼠标悬停时有一只张开的手(这有效),当鼠标点击它时有一只闭合的手(我无法开始工作)。
我知道我在 javascript 中做错了什么。任何人都可以帮忙吗?
Javascript:
$(function () {
$(".dragbox h2").on("mousedown", function (evt) {
$(this).addClass('grabbing');
}).on("mouseup", function (evt) {
$(this).removeClass('grabbing');
});
});
CSS:
.dragbox {
margin:0px 2px 2px;
background:#fff;
position:relative;
}
.dragbox h2 {
font-size:15px;
cursor: grab;
cursor:-webkit-grab;
cursor:-moz-grab;
cursor: url(https://mail.google.com/mail/images/2/openhand.cur), default !important;
}
.dragbox h2.grabbing {
cursor: grabbing;
cursor:-webkit-grabbing;
cursor:-moz-grabbing;
cursor: url(https://mail.google.com/mail/images/2/closedhand.cur), default !important;
}