我在jsFiddle中有這個jQuery代碼,它將iframe擴展爲內容的最大尺寸。
在後您添加HTML代碼:
<article>
<p><iframe width="400" height="400" src="http://www.youtube.com/...."></iframe></p>
</article>
在模板中添加下面的jQuery代碼。
<script type='text/javascript'>
jQuery(document).ready(function($) {
$(function() {
var $allVideos = $("iframe[src^='http://player.vimeo.com'], iframe[src^='http://www.youtube.com'], object, embed"),
$fluidEl = $("p");
$allVideos.each(function() {
$(this)
// jQuery .data does not work on object/embed elements
.attr('data-aspectRatio', this.height/this.width)
.removeAttr('height')
.removeAttr('width');
});
$(window).resize(function() {
var newWidth = $fluidEl.width();
$allVideos.each(function() {
var $el = $(this);
$el
.width(newWidth)
.height(newWidth * $el.attr('data-aspectRatio'));
});
}).resize();
});
});
</script>
我試了我的Wordpress網站上的代碼,它的工作。
在Chrome中很有效。有關Safari和Firefox瀏覽器兼容性的任何建議? – user2132752 2013-03-26 00:09:48
我不是javascript專家,但看着Chrome開發人員工具,你有很多Javascript錯誤。先嚐試擺脫那些。檢查這個http://stackoverflow.com/questions/7181573/does-javascript-execution-stop-when-an-invalid-line-is-encountered – user850010 2013-03-26 07:27:51