Alterar dimensões de embed do youtube com javascript
por admin em HTML,Javascript Nenhum comentário
Repositório, para deixar arquivado aqui. Veja que ao clicar em cada botão, o tamanho do vídeo se altera. <html> <head> <style type="text/css"> * { margin: 0; padding: 0; } html, body { height: 100%; } </style> <script type="text/javascript"> function sizeIframe( w, h ) { document.getElementById('yt').width = w; document.getElementById('yt').height = h; } window.onload = function(){ sizeIframe( [...]