我有以下图片:
现在我想在此图像上放置一个vimeo视频,并提供响应视图:
要做到这一点,我使用以下css和HTML代码:
HTML代码:
<div class="vimeo">
<article>
<figure>
<iframe src="https://player.vimeo.com/video/211148482?autoplay=1&title=0&byline=0&portrait=0" width="568" height="453" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</figure>
</article>
</div>
Run Code Online (Sandbox Code Playgroud)
CSS代码:
.vimeo {
font: 16px/1.4 Georgia, Serif;
width: 45%;
margin: 1px auto;
background: url(images/bg.jpg);
background-size: contain;
background-repeat: no-repeat;
position: relative;
}
pre, article style, article script {
white-space: pre;
display: block;
overflow-x: auto;
}
img {
max-width: 100%;
}
figure {
display: block;
}
figcaption {
display: block; text-align: center; orphans: 2;
}
Run Code Online (Sandbox Code Playgroud)
现在它看起来像这个图像:
我想在图像灰色背景上设置它,我该怎么做?
小智 1
检查代码,但需要一些微调。
$(function() {
var $allVideos = $("iframe[src^='//player.vimeo.com'], iframe[src^='//www.youtube.com'], object, embed"),
$fluidEl = $("figure");
$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();
});Run Code Online (Sandbox Code Playgroud)
figure {
display: block;
background: url(https://i.stack.imgur.com/JQiLu.jpg);
background-size: contain;
background-repeat: no-repeat;
padding: 7%;
}
figcaption {
position: relative;
top: 50px;
}Run Code Online (Sandbox Code Playgroud)
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<figure>
<iframe src="//player.vimeo.com/video/211148482?autoplay=0&title=0&byline=0&portrait=0" width="400" height="225" frameborder="0"></iframe>
<figcaption>Caption</figcaption>
</figure>Run Code Online (Sandbox Code Playgroud)
感谢 https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php