h5 iframe 自适应高度
外部div:div position: relative; width: 100%; padding-top: calc(100% * 720 / 1280); border: 2px black solid;
内部iframe:position: absolute; width: 100%; height: 100%; top: 0;
<div style="position: relative; width: 100%;
padding-top: calc(100% * 720 / 1280);
border: 2px black solid;">
<iframe src="" title=""
style="position: absolute; width: 100%; height: 100%; top: 0;">
</iframe>
</div>