25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

17 lines
388 B

  1. class IHKLinkCollection {
  2. constructor(div) {
  3. const observer = new ResizeObserver((entries) => {
  4. entries.map((entry) => {
  5. const w = entry.borderBoxSize[0].inlineSize;
  6. if (w < 1000) {
  7. div.dataset.cols = '1';
  8. } else {
  9. div.dataset.cols = '2';
  10. }
  11. })
  12. })
  13. observer.observe(div);
  14. }
  15. }
  16. export default IHKLinkCollection;