qq_nn_19
2017-11-09 22:14
getMaxScrollPosition:function () {
var self = this;
console.log("调用getMaxScrollPosition");
//获取滚动条内容高度:可视区和元素内容高度的最大值
console.log("self.$cont.height()"+self.$cont.height());
console.log("self.$cont[0].scrollHeight"+self.$cont[0].scrollHeight)
return Math.max(self.$cont.height(),self.$cont[0].scrollHeight)-self.$cont.height();
//内容可滚动的距离为:文本内容高度-可视区内容高度,当文本内容高度小于可视区时可移动距离为0
},
厉害了,我的哥
jQuery实现自定义滚动条
39578 学习 · 76 问题
相似问题