Is it possible to recalculate the `srcset` image used if browser window is resized?

前端 未结 2 1194
心在旅途
心在旅途 2021-02-07 12:22

Is it possible to get srcset to recalculate the browser window size once the page has loaded, and thus update the image its using.

The reason you\'d want t

2条回答
  •  心在旅途
    2021-02-07 12:51

    i found this to force a re-render

    var img = document.getElementById('my-element');

    img.srcset = img.srcset;

提交回复
热议问题