共计 409 个字符,预计需要花费 2 分钟才能阅读完成。
对于居中
tab 点击元素居中(小程序)
// 获取客设施宽度
const clientWidth = dd.getSystemInfoSync().windowWidth / 2;
// 获取节点联合
const nodes = dd.createSelectorQuery().selectAll( '.tabs .item');
handleTap(){const { index} = e.target.dataset;
const {offsetLeft} = e.currentTarget;
const PADDING = 96; // 盒子默认边距
nodes.boundingClientRect().exec( rect => {const { width} = rect[0][index];
const scrollLeft = offsetLeft - this.clientWidth / 2 + (width / 2) - PADDING
this.setData({scrollLeft})
});
}
正文完
发表至: javascript
2020-12-15