2020年12月14日 星期一

blogger讓所有iframe長寬比都變成16:9

iframe的比例在rwd的網站裡面要調整一直都很麻煩。用@media的方式只能抓個大概,所以就想用運算的方式一次搞定。

在</body>前面貼入以下程式碼就可以摟

<script>   function iframeheight(){     var aiframe = document.querySelectorAll('.post iframe');//抓取所有post裡面的iframe     console.log(aiframe);     [].forEach.call(aiframe, function(iframe) {       console.log(iframe);       var theCSSprop = window.getComputedStyle(iframe,null).getPropertyValue('width');         iframe.style.height = parseInt(theCSSprop)/16*9+'px';     });   console.log('called');   }   iframeheight(); </script>

沒有留言:

張貼留言