您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

1 行
591 B

  1. {"ast":null,"code":"export function getSize(scrollbar) {\n var containerEl = scrollbar.containerEl,\n contentEl = scrollbar.contentEl;\n return {\n container: {\n // requires `overflow: hidden`\n width: containerEl.clientWidth,\n height: containerEl.clientHeight\n },\n content: {\n // border width should be included\n width: contentEl.offsetWidth - contentEl.clientWidth + contentEl.scrollWidth,\n height: contentEl.offsetHeight - contentEl.clientHeight + contentEl.scrollHeight\n }\n };\n}","map":null,"metadata":{},"sourceType":"module"}