xdesign-vue-next
Version:
XDesign Component for vue-next
51 lines (45 loc) • 1.8 kB
JavaScript
/**
* xdesign v1.0.6
* (c) 2023 xdesign
* @license MIT
*/
;
Object.defineProperty(exports, '__esModule', { value: true });
var _common_js_utils_helper = require('./helper.js');
require('@babel/runtime/helpers/toConsumableArray');
require('@babel/runtime/helpers/objectWithoutProperties');
require('@babel/runtime/helpers/slicedToArray');
require('@babel/runtime/helpers/defineProperty');
require('lodash/isString');
require('lodash/isNull');
require('lodash/isUndefined');
require('lodash/isNumber');
require('lodash/isArray');
function getScrollbarWidthWithCSS() {
var defaultScrollbarWidth = 6;
if (typeof navigator === "undefined" || !navigator) return defaultScrollbarWidth;
if (/(Chrome|Safari)/i.test(navigator.userAgent)) return defaultScrollbarWidth;
var scrollDiv = document.createElement("div");
scrollDiv.style.cssText = "width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;";
document.body.appendChild(scrollDiv);
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild(scrollDiv);
if (/Firefox/.test(navigator.userAgent)) {
scrollbarWidth -= 4;
}
if (_common_js_utils_helper.getIEVersion() <= 11) {
scrollbarWidth = 12;
}
return scrollbarWidth;
}
function getScrollbarWidth() {
var scrollDiv = document.createElement("div");
scrollDiv.style.cssText = "width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;";
document.body.appendChild(scrollDiv);
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
document.body.removeChild(scrollDiv);
return scrollbarWidth;
}
exports.getScrollbarWidth = getScrollbarWidth;
exports.getScrollbarWidthWithCSS = getScrollbarWidthWithCSS;
//# sourceMappingURL=getScrollbarWidth.js.map