css Экспортмедиа-запросоввJavaScript$ b $bЧто-топочтипохожееиспользуетсявFdn
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css Экспортмедиа-запросоввJavaScript$ b $bЧто-топочтипохожееиспользуетсявFdn相关的知识,希望对你有一定的参考价值。
var breakpoint = {};
breakpoint.refreshValue = function () {
this.value = window.getComputedStyle(
document.querySelector('body'), ':before'
).getPropertyValue('content').replace(/\"/g, '');
// псевдо по Уэльшу
// Firefox and IE return the value with double quotes,
// while other browsers do not. To get consistent values I'm using replace() with regex to strip those out.
};
$(window).resize(function () {
breakpoint.refreshValue();
$('.breakpoint').html(breakpoint.value);
}).resize();