How to detect resize of any element in HTML5

后端 未结 4 778
时光取名叫无心
时光取名叫无心 2021-02-13 12:05

What should the best practices to listen on element resize event?

I want to re-position an element (jQuery dialog in my case), once it\'s size changed. But I am now more

相关标签:
4条回答
  • 2021-02-13 12:24

    As of July 2020, ResizeObserver is still un-official in W3C nor WhatWG but it is already supported by all major browsers since support Safari 13.1 since 2020-Mar-24.


    FYI, there's a spec for a new ResizeObserver API. Chrome seems to be the only browser that has implemented it as of Aug 2018 (see caniuse.com), but there's at least one polyfill you can use now (which uses MutationObserver).

    0 讨论(0)
  • 2021-02-13 12:45

    Yes there is not simple solution, that's not good.

    I've found something very useful for this.: cross browser event based element resize

    It's tricky, appending some needed html to the element that have to be listened and detects scrolling event.

    Some html example from that page:

    <div class="resize-triggers">
        <div class="expand-trigger"><div></div></div>
        <div class="contract-trigger"></div>
    </div>
    

    Also Some JS:

    var myElement = document.getElementById('my_element'),
        myResizeFn = function(){
            /* do something on resize */
        };
    addResizeListener(myElement, myResizeFn);
    removeResizeListener(myElement, myResizeFn);
    

    But it works for elements those are able to have children, not for self-closing tags.

    You can see the demo http://jsfiddle.net/3QcnQ/67/

    0 讨论(0)
  • 2021-02-13 12:47

    Well, there is a easy library for that. Although there's nothing official how to listen on dimension changes of all types of elements and only window supports it at the moment we have luckily a polifill for that that works very accurate and supports all browsers even inclusive IE6+.

    https://github.com/marcj/css-element-queries

    You can find there a class ResizeSensor. To setup a listener on a element you can just do:

    new ResizeSensor($('.myelements'), function() {
        console.log('changed');
    });
    
    0 讨论(0)
  • 2021-02-13 12:49

    Given yourelement, when the size changes (ex. a text translation took place) you can doyourstuff(), including
    ro.unobserve(yourelement);

      var inilen = yourelement.offsetWidth;
      var ro = new ResizeObserver( entries => {
        for (let entry of entries) {
          const cr = entry.contentRect;
          if (inilen !== cr.width) {
            doyourstuff();        
          }
        }
      });
    
      ro.observe(<your element>);
    
    0 讨论(0)
提交回复
热议问题