如何在JavaScript中确定水平滚动条的高度或垂直滚动条的宽度?
如何在JavaScript中确定水平滚动条的高度或垂直滚动条的宽度?
Answers:
从Alexandre Gomes博客开始, 我还没有尝试过。请让我知道这对你有没有用。
function getScrollBarWidth () {
var inner = document.createElement('p');
inner.style.width = "100%";
inner.style.height = "200px";
var outer = document.createElement('div');
outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild (inner);
document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll';
var w2 = inner.offsetWidth;
if (w1 == w2) w2 = outer.clientWidth;
document.body.removeChild (outer);
return (w1 - w2);
};
使用jQuery,您可以将Matthew Vines的答案缩短为:
function getScrollBarWidth () {
var $outer = $('<div>').css({visibility: 'hidden', width: 100, overflow: 'scroll'}).appendTo('body'),
widthWithScroll = $('<div>').css({width: '100%'}).appendTo($outer).outerWidth();
$outer.remove();
return 100 - widthWithScroll;
};
这只是我找到的脚本,可在Webkit浏览器中使用... :)
$.scrollbarWidth = function() {
var parent, child, width;
if(width===undefined) {
parent = $('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');
child=parent.children();
width=child.innerWidth()-child.height(99).innerWidth();
parent.remove();
}
return width;
};
最小化版本:
$.scrollbarWidth=function(){var a,b,c;if(c===undefined){a=$('<div style="width:50px;height:50px;overflow:auto"><div/></div>').appendTo('body');b=a.children();c=b.innerWidth()-b.height(99).innerWidth();a.remove()}return c};
当文档准备好时,您必须调用它...
$(function(){ console.log($.scrollbarWidth()); });
在Windows 7上于2012年3月28日在最新的FF,Chrome,IE和Safari中进行了测试,并且100%正常工作。
来源:http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth
width
将始终 ===未定义的第一时间的函数被调用。在width
已经设置了对函数的后续调用时,该检查仅防止不必要地再次运行计算。
width
,而是重新计算每一次。它可以工作,但是效率很低。请帮个忙,在Alman的插件中使用正确的版本。
如果您正在寻找简单的操作,只需将纯dom js和jquery混合使用,
var swidth=(window.innerWidth-$(window).width());
返回当前页面滚动条的大小。(如果可见,否则将返回0)
window.scrollBarWidth = function() {
document.body.style.overflow = 'hidden';
var width = document.body.clientWidth;
document.body.style.overflow = 'scroll';
width -= document.body.clientWidth;
if(!width) width = document.body.offsetWidth - document.body.clientWidth;
document.body.style.overflow = '';
return width;
}
对我来说,最有用的方法是
(window.innerWidth - document.getElementsByTagName('html')[0].clientWidth)
使用香草JavaScript。
document.documentElement.clientWidth
。documentElement
更清晰,干净地表达了获取<html>
元素的意图。
我找到了一个简单的解决方案,该解决方案适用于页面内部的元素,而不是页面本身:
$('#element')[0].offsetHeight - $('#element')[0].clientHeight
这将返回x轴滚动条的高度。
// Create the measurement node
var scrollDiv = document.createElement("div");
scrollDiv.className = "scrollbar-measure";
document.body.appendChild(scrollDiv);
// Get the scrollbar width
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
console.info(scrollbarWidth); // Mac: 15
// Delete the DIV
document.body.removeChild(scrollDiv);
.scrollbar-measure {
width: 100px;
height: 100px;
overflow: scroll;
position: absolute;
top: -9999px;
}
在我的网站上给我17,在Stackoverflow上给我14。
您可以使用jquery + javascript window
通过document
以下方式确定滚动条:
var scrollbarWidth = ($(document).width() - window.innerWidth);
console.info("Window Scroll Bar Width=" + scrollbarWidth );
的方式Antiscroll.js
做它在它的代码是:
function scrollbarSize () {
var div = $(
'<div class="antiscroll-inner" style="width:50px;height:50px;overflow-y:scroll;'
+ 'position:absolute;top:-200px;left:-200px;"><div style="height:100px;width:100%"/>'
+ '</div>'
);
$('body').append(div);
var w1 = $(div).innerWidth();
var w2 = $('div', div).innerWidth();
$(div).remove();
return w1 - w2;
};
代码来自这里:https : //github.com/LearnBoost/antiscroll/blob/master/antiscroll.js#L447
detectScrollbarWidthHeight: function() {
var div = document.createElement("div");
div.style.overflow = "scroll";
div.style.visibility = "hidden";
div.style.position = 'absolute';
div.style.width = '100px';
div.style.height = '100px';
document.body.appendChild(div);
return {
width: div.offsetWidth - div.clientWidth,
height: div.offsetHeight - div.clientHeight
};
},
已在Chrome,FF,IE8,IE11中测试。
创建一个空的div
并确保它出现在所有页面上(即,将其放入header
模板中)。
给它这样的样式:
#scrollbar-helper {
// Hide it beyond the borders of the browser
position: absolute;
top: -100%;
// Make sure the scrollbar is always visible
overflow: scroll;
}
然后只需#scrollbar-helper
使用Javascript 检查的大小:
var scrollbarWidth = document.getElementById('scrollbar-helper').offsetWidth;
var scrollbarHeight = document.getElementById('scrollbar-helper').offsetHeight;
不需要计算任何东西,因为这div
总会有width
和height
的scrollbar
。
唯一的缺点是div
您的模板中将有一个空白。但是,另一方面,您的Javascript文件会更干净,因为它只需要1或2行代码。
function getWindowScrollBarHeight() {
let bodyStyle = window.getComputedStyle(document.body);
let fullHeight = document.body.scrollHeight;
let contentsHeight = document.body.getBoundingClientRect().height;
let marginTop = parseInt(bodyStyle.getPropertyValue('margin-top'), 10);
let marginBottom = parseInt(bodyStyle.getPropertyValue('margin-bottom'), 10);
return fullHeight - contentHeight - marginTop - marginBottom;
}
使用jQuery(仅在firefox中测试):
function getScrollBarHeight() {
var jTest = $('<div style="display:none;width:50px;overflow: scroll"><div style="width:100px;"><br /><br /></div></div>');
$('body').append(jTest);
var h = jTest.innerHeight();
jTest.css({
overflow: 'auto',
width: '200px'
});
var h2 = jTest.innerHeight();
return h - h2;
}
function getScrollBarWidth() {
var jTest = $('<div style="display:none;height:50px;overflow: scroll"><div style="height:100px;"></div></div>');
$('body').append(jTest);
var w = jTest.innerWidth();
jTest.css({
overflow: 'auto',
height: '200px'
});
var w2 = jTest.innerWidth();
return w - w2;
}
但是我实际上更喜欢@Steve的答案。
这是一个很好的答案:https : //stackoverflow.com/a/986977/5914609
但是对于我来说,它没有用。我花了几个小时寻找解决方案。
最后,我返回到上面的代码,并为每种样式添加了!important。而且有效。
我无法在原始答案下方添加评论。因此,这里是解决方法:
function getScrollBarWidth () {
var inner = document.createElement('p');
inner.style.width = "100% !important";
inner.style.height = "200px !important";
var outer = document.createElement('div');
outer.style.position = "absolute !important";
outer.style.top = "0px !important";
outer.style.left = "0px !important";
outer.style.visibility = "hidden !important";
outer.style.width = "200px !important";
outer.style.height = "150px !important";
outer.style.overflow = "hidden !important";
outer.appendChild (inner);
document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll !important';
var w2 = inner.offsetWidth;
if (w1 == w2) w2 = outer.clientWidth;
document.body.removeChild (outer);
return (w1 - w2);
};
这个终生的决定将使您有机会找到浏览器的scrollY宽度(原始 JavaScript)。使用此示例,您可以在任何元素上获得scrollY宽度,包括根据您当前的设计概念不需要滚动的那些元素:
getComputedScrollYWidth (el) {
let displayCSSValue ; // CSS value
let overflowYCSSValue; // CSS value
// SAVE current original STYLES values
{
displayCSSValue = el.style.display;
overflowYCSSValue = el.style.overflowY;
}
// SET TEMPORALLY styles values
{
el.style.display = 'block';
el.style.overflowY = 'scroll';
}
// SAVE SCROLL WIDTH of the current browser.
const scrollWidth = el.offsetWidth - el.clientWidth;
// REPLACE temporally STYLES values by original
{
el.style.display = displayCSSValue;
el.style.overflowY = overflowYCSSValue;
}
return scrollWidth;
}
这是基于偏移宽度差异的更简洁易读的解决方案:
function getScrollbarWidth(): number {
// Creating invisible container
const outer = document.createElement('div');
outer.style.visibility = 'hidden';
outer.style.overflow = 'scroll'; // forcing scrollbar to appear
outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps
document.body.appendChild(outer);
// Creating inner element and placing it in the container
const inner = document.createElement('div');
outer.appendChild(inner);
// Calculating difference between container's full width and the child width
const scrollbarWidth = (outer.offsetWidth - inner.offsetWidth);
// Removing temporary elements from the DOM
outer.parentNode.removeChild(outer);
return scrollbarWidth;
}
参见JSFiddle。
已经在我的库中编码,因此它是:
var vScrollWidth = window.screen.width - window.document.documentElement.clientWidth;
我应该提到jQuery $(window).width()
也可以代替window.document.documentElement.clientWidth
。
如果您在右侧的firefox中打开开发人员工具,则无法使用,但如果在底部打开了devs窗口,则可以克服该问题!
window.screen
支持quirksmode.org!
玩得开心!
似乎可行,但是也许有一个更简单的解决方案可以在所有浏览器中使用?
// Create the measurement node
var scrollDiv = document.createElement("div");
scrollDiv.className = "scrollbar-measure";
document.body.appendChild(scrollDiv);
// Get the scrollbar width
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;
console.info(scrollbarWidth); // Mac: 15
// Delete the DIV
document.body.removeChild(scrollDiv);
.scrollbar-measure {
width: 100px;
height: 100px;
overflow: scroll;
position: absolute;
top: -9999px;
}