Como posso determinar a altura de uma barra de rolagem horizontal ou a largura de uma vertical, em JavaScript?
Como posso determinar a altura de uma barra de rolagem horizontal ou a largura de uma vertical, em JavaScript?
Respostas:
Do blog Alexandre Gomes eu não tentei. Deixe-me saber se funciona para você.
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);
};
Usando o jQuery, você pode reduzir a resposta de Matthew Vines para:
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;
};
Este é apenas o script que encontrei, que está funcionando nos navegadores de kit da web ... :)
$.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;
};
Versão minimizada:
$.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};
E você tem que chamá-lo quando o documento estiver pronto ... então
$(function(){ console.log($.scrollbarWidth()); });
Testado em 2012-03-28 no Windows 7 no mais recente FF, Chrome, IE e Safari e 100% funcionando.
fonte: http://benalman.com/projects/jquery-misc-plugins/#scrollbarwidth
width
vai sempre === indefinido a primeira vez que a função é chamada. Nas chamadas subsequentes para a função width
já estão definidas, essa verificação apenas impede que os cálculos sejam executados novamente desnecessariamente.
width
, mas recalculá-lo sempre. Funciona, mas é terrivelmente ineficiente. Por favor, faça um favor ao mundo e use a versão correta no plugin de Alman.
se você estiver procurando por uma operação simples, basta misturar dom js e jquery simples,
var swidth=(window.innerWidth-$(window).width());
retorna o tamanho da barra de rolagem da página atual. (se estiver visível ou retornará 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;
}
Para mim, a maneira mais útil foi
(window.innerWidth - document.getElementsByTagName('html')[0].clientWidth)
com JavaScript baunilha.
document.documentElement.clientWidth
. documentElement
mais clara e limpa expressa a intenção de obter o <html>
elemento.
Encontrei uma solução simples que funciona para elementos dentro da página, em vez da própria página:
$('#element')[0].offsetHeight - $('#element')[0].clientHeight
Isso retorna a altura da barra de rolagem do eixo x.
Do blog de David Walsh :
// 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;
}
Dá-me 17 no meu site, 14 aqui no Stackoverflow.
Se você já possui um elemento com barras de rolagem, use:
function getScrollbarHeight(el) {
return el.getBoundingClientRect().height - el.scrollHeight;
};
Se não houver horzintscrollbar presente, a função retornará 0
Você pode determinar a window
barra de rolagem document
como abaixo, usando jquery + javascript:
var scrollbarWidth = ($(document).width() - window.innerWidth);
console.info("Window Scroll Bar Width=" + scrollbarWidth );
A maneira como Antiscroll.js
faz isso em seu código é:
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;
};
O código é daqui: 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
};
},
Testado no Chrome, FF, IE8, IE11.
Crie um vazio div
e verifique se ele está presente em todas as páginas (ou seja, colocando-o no header
modelo).
Dê a ele esse estilo:
#scrollbar-helper {
// Hide it beyond the borders of the browser
position: absolute;
top: -100%;
// Make sure the scrollbar is always visible
overflow: scroll;
}
Em seguida, basta verificar o tamanho do #scrollbar-helper
Javascript:
var scrollbarWidth = document.getElementById('scrollbar-helper').offsetWidth;
var scrollbarHeight = document.getElementById('scrollbar-helper').offsetHeight;
Não há necessidade de calcular nada, pois isso div
sempre terá o width
e height
do scrollbar
.
A única desvantagem é que haverá um espaço vazio div
nos seus modelos. Mas, por outro lado, seus arquivos Javascript serão mais limpos, pois isso requer apenas 1 ou 2 linhas de código.
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;
}
function getScrollBarWidth() {
return window.innerWidth - document.documentElement.clientWidth;
}
A maioria do navegador usa 15px para a largura da barra de rolagem
Com jquery (testado apenas no 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;
}
Mas na verdade eu gosto mais da resposta de Steve.
Esta é uma ótima resposta: https://stackoverflow.com/a/986977/5914609
No entanto, no meu caso, não funcionou. E passei horas procurando a solução.
Finalmente voltei ao código acima e adicionei! Important para cada estilo. E funcionou.
Não consigo adicionar comentários abaixo da resposta original. Então, aqui está a correção:
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);
};
Essa decisão de invasão de vida lhe dará a oportunidade de encontrar a largura de rolagem do navegador ( largura do navegador ). Usando este exemplo, você pode obter a largura scrollY em qualquer elemento, incluindo os elementos que não precisam ter rolagem de acordo com sua concepção de design atual:
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;
}
Aqui está a solução mais concisa e fácil de ler, com base na diferença de largura de deslocamento:
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;
}
Veja o JSFiddle .
Já codificado na minha biblioteca, então aqui está:
var vScrollWidth = window.screen.width - window.document.documentElement.clientWidth;
Devo mencionar que o jQuery $(window).width()
também pode ser usado em vez de window.document.documentElement.clientWidth
.
Não funciona se você abrir ferramentas de desenvolvedor no firefox à direita, mas será superado se a janela devs for aberta na parte inferior!
window.screen
é suportado quirksmode.org !
Diverta-se!
Parece funcionar, mas talvez haja uma solução mais simples que funcione em todos os navegadores?
// 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;
}