JavaScriptはDOM元素の大きさの変化を監督します。


1.需要シーン
開発過程でよく出会う問題の一つはどのように一つのdivのsize変化を監督するかです。
例えばcanvasでchartを描きましたが、canvasのsizeが変化した時に、中身を新たに描き直す必要があります。この時はresize事件を監督して処理する必要があります。windowの上でresize事件の傍受がありますが、しかしこれは私達の需要を満たすことができなくて、多くの時、divのsizeが変化が発生したため、実際のwindow.resize事件は触発していません。
divのresizeイベントの傍受については、タイマーチェック、scrollイベントなど、多くの実施形態があります。ここではiframe要素を通して傍受を実現します。
しかし、私達は間接的にwindowのresize事件の傍受を利用して、あるdivに対するresize事件の傍受を実現することができます。
2.原理の実現
  • ダイナミックにiframeラベルを作成し、容器に追加し、幅の高い継承容器100%
  • iframeのwindowを取得し、contentwindow属性を通じて取得できます。
  • iframeの広高継承と親ノードにより、親容器の幅が変化すると、自然にiframeのresizeイベントがトリガされる。
  • iframeWindow.resizeイベントを通じて、DOMの大きさの変化をモニターして、それによってresize事件の一つの傍受に達します。
    
    document.querySelector("#ifarme_id").contentWindow.addEventListener('resize', () => {
      console.log('size Change!');
    }, false)
    
    3.呼び出し
    
    <!DOCTYPE html>
    <html>
      <head>
     <meta charset="utf-8">
     <title>DIV    </title>
      <style type="text/css">
        #content {
        overflow: auto;
      }
     </style>
     </head>
     <body>
     <div id="content">
             :        ,        
           ,         :        ,        ?
              :        ,         。
            ,          ,       ,         。
     </div>
    
     <button id="change-size">    </button>
    
     <script type="text/javascript">
      var eleResize = new ElementResize('#content');
      eleResize.listen(function() {
      console.log('size change!')
      })
    
      //    
      document.querySelector('#change-size').addEventListener('click', function() {
      let cont = document.querySelector('#content');
      cont.style.width = Math.floor((Math.random() * (document.documentElement.clientWidth - 500)) + 500) + 'px';
      cont.style.height = Math.floor(Math.random() * 300) + 'px';
      }, false)
     </script>
     </body>
    </html>
    完全コード
    
    <!DOCTYPE html>
    <html>
     <head>
     <meta charset="utf-8">
     <title>DIV    </title>
     <style type="text/css">
      #content {
      overflow: auto;
      }
     </style>
     </head>
     <body>
     <div id="content">
         :        ,        
    
        ,         :        ,        ?
    
           :        ,         。
    
         ,          ,       ,         。
     </div>
     <button id="change-size">    </button>
    
     <script type="text/javascript">
      (function() {
      let self = this;
      /**
       *       
       * @param {Object} el        
       */
      function ElementResize(eleSelector) {
       if (!(this instanceof ElementResize)) return;
       if (!eleSelector) return;
       this.eleSelector = eleSelector;
       this.el = document.querySelector(eleSelector);
       this.queue = [];
       this.__init(); //globel init
      }
    
      //   
      ElementResize.prototype.__init = function() {
       let iframe = this.crateIElement();
       this.el.style.position = 'relative';
       this.el.appendChild(iframe)
       this.bindEvent(iframe.contentWindow);
      }
    
      /**
       *       
       * @param {HTMLObject} el
       * @param {Object} styleJson
       */
      ElementResize.prototype.setStyle = function(el, styleJson) {
       if (!el) return;
       styleJson = styleJson || {
       opacity: 0,
       'z-index': '-1111',
       position: 'absolute',
       left: 0,
       top: 0,
       width: '100%',
       height: '100%',
       };
       let styleText = '';
       for (key in styleJson) {
       styleText += (key + ':' + styleJson[key] + ';');
       }
       el.style.cssText = styleText;
      }
    
      /**
       *     
       * @param {Object} style
       */
      ElementResize.prototype.crateIElement = function(style) {
       let iframe = document.createElement('iframe');
       this.setStyle(iframe);
       return iframe;
      }
    
      /**
       *     
       * @param {Object} el
       */
      ElementResize.prototype.bindEvent = function(el) {
       if (!el) return;
       var _self = this;
       el.addEventListener('resize', function() {
       _self.runQueue();
       }, false)
      }
    
      /**
       *     
       */
      ElementResize.prototype.runQueue = function() {
       let queue = this.queue;
       for (var i = 0; i < queue.length; i++) {
       (typeof queue[i]) === 'function' && queue[i].apply(this);
       }
      }
    
      /**
       *     
       * @param {Object} cb     
       */
      ElementResize.prototype.listen = function(cb) {
       if (typeof cb !== 'function') throw new TypeError('cb is not a function!');
       this.queue.push(cb);
      }
    
      self.ElementResize = ElementResize;
      })()
      
      //        
      var eleResize = new ElementResize('#content');
      eleResize.listen(function() {
      console.log('  listener')
      })
    
      //    
      document.querySelector('#change-size').addEventListener('click', function() {
      let cont = document.querySelector('#content');
      cont.style.width = Math.floor((Math.random() * (document.documentElement.clientWidth - 500)) + 500) + 'px';
      cont.style.height = Math.floor(Math.random() * 300) + 'px';
      }, false)
     </script>
     </body>
    </html>
    ここでは、JavaScript監督のDOM元素の大きさの変化に関する記事を紹介します。JavaScript監督DOM元素の大きさについては、以前の記事を検索したり、下記の関連記事を閲覧したりしてください。これからもよろしくお願いします。