UNPKG
nuorder-carousel
Version:
latest (1.0.0)
1.0.0
React Responsive Carousel
github.com/nuorder/nuorder-carousel
nuorder/nuorder-carousel
nuorder-carousel
/
src
/
dimensions.js
8 lines
(6 loc)
•
189 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export
const
outerWidth
= (
el
) => {
let
width = el.
offsetWidth
;
const
style =
getComputedStyle
(el); width +=
parseInt
(style.
marginLeft
) +
parseInt
(style.
marginRight
);
return
width; };