我以這種方式在博客上插入了一個視頻響應。視頻響應不起作用
CSS
.flex-video {
position: relative;
padding-top: 25px;
padding-bottom: 67.5%;
height: 0;
margin-bottom: 16px;
overflow: hidden;
}
.flex-video.widescreen { padding-bottom: 57.25%; }
.flex-video.vimeo { padding-top: 0; }
.flex-video iframe,
.flex-video object,
.flex-video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
@media only screen and (max-device-width: 800px), only screen and (device-width: 1024px) and (device-height: 600px), only screen and (width: 1280px) and (orientation: landscape), only screen and (device-width: 800px), only screen and (max-width: 767px) {
.flex-video { padding-top: 0; }
}
JS
$(document).ready(function() {
$('iframe').each(function() {
$(this).wrap('<div class="flex-video"></div>');
});
});
現在我必須插入一個jQuery動畫隱藏的視頻,下面這個教程。
http://www.ssdtutorials.com/tutorials/title/show-hide-div-jquery.html
jQuery的效果的作品,但在這樣的視頻是沒有反應。
請創建一個JSFiddle來重現您的問題。 – dekkard
這裏是:) https://jsfiddle.net/yn7q9ys5/ 如果你調整輸出,第一個視頻不會調整它的大小。點擊「點擊此處」按鈕顯示第一個視頻。 – supap