vuescroll
Version:
A beautiful scrollbar based on Vue.js for PC and mobile.
27 lines (26 loc) • 514 B
JavaScript
export default {
vertical: {
size: 'height',
opsSize: 'width',
posName: 'top',
opposName: 'bottom',
page: 'pageY',
scroll: 'scrollTop',
scrollSize: 'scrollHeight',
offset: 'offsetHeight',
client: 'clientY',
axis: 'Y'
},
horizontal: {
size: 'width',
opsSize: 'height',
posName: 'left',
opposName: 'right',
page: 'pageX',
scroll: 'scrollLeft',
scrollSize: 'scrollWidth',
offset: 'offsetWidth',
client: 'clientX',
axis: 'X'
}
};