2 回答
TA贡献1111条经验 获得超0个赞
function move_down() {
document.getElementById('mydiv').scrollTop += 10;
}
function move_up() {
document.getElementById('mydiv').scrollTop -= 10;
}
使用上/下按钮触发功能。
TA贡献1825条经验 获得超4个赞
function scrollWithin(wrapperElementId, innerElementId) {
// get the inner element
var innerElement = document.getElementById(innerElementId);
// calculate the offset top to to wrapper element plus the element height
var topPos = innerElement.offsetTop + (innerElement.offsetHeight / 2);
// zoom the wrapper element to the inner element
document.getElementById(wrapperElementId).scrollTop = topPos;
}
scrollWithin('scrollable', 'item3');
希望我明白你的意思。这是要测试的小提琴:https://jsfiddle.net/ukhzxs59/
添加回答
举报