我想根据鼠标位置滚动页面任何想法如何使用 jquery 做到这一点?要添加我有鼠标的坐标。
添加实际功能。你能帮我滚动一下吗?
function createDraggables(){
$j( ".card" ).draggable({
revert: "invalid",
containment: "#cardwall",
drag: function(event,ui) {
var viewportHeight = $j(window).height();
var documentHeight = $j(document).height();
var y = event.pageY - $j('html, body').scrollTop();
console.log('==>',this);
$j('html, body').scrollTop ( (y / viewportHeight) * documentHeight );
}
});
}