我想为我的 div 制作自定义滚动。我已经写了一些代码,但它不能正常工作。首先它在 mousemove 上。这应该像其他滚动作品一样工作。小提琴
这是代码
var height = $('.frm').height(),
overflowHeight= $('.overflow').height();
var finalheight = overflowHeight-height;
$('.tab').mousemove(function(e){
var top= parseInt($('.tab').css('top'));
var ac= top;
$('.overflow').css({top:-ac})
var y= e.pageY;
$(this).css({top:y})