如何在预设图像中嵌入图像或视频

时间:2012-06-19 21:38:00

标签: html css image video styles

我正在撰写一个网站介绍页面,并且非常喜欢此页面上的风格:http://www.davidhutton.com/其他图像中有动态图像/视频。

为了简化它,我可以在这里将图像放入电视容器中:http://jsfiddle.net/h9Nn3/2/

我不确定它有多复杂,但它过于复杂,至少起点非常感谢!

3 个答案:

答案 0 :(得分:2)

根据你的例子,你可以这样解决:

<style>
div.container {
    width:          337px;
    height:         297px;
    padding:        25px 35px 0px 28px;
    background:     url(http://www.officialpsds.com/images/thumbs/tv-screen-1-psd29071.png) no-repeat 0 0;
}

div.container > div {
    height:         189px;
    overflow:       hidden;
    border:         1px solid red;
}
</style>

<div class="container">
    <div>
        This container should have a red border and fit's exactly the screen.
        You can replace or fill it with everything you want, for example an img-tag.
    </div>
</div>

答案 1 :(得分:1)

我实际上将电视图像设置为背景图像,并将其他图像放在同一个容器中。

<div id="content">
    <img src="https://www.google.com/images/srpr/logo3w.png" />
</div>
​
#content {
    background-image: url('http://www.officialpsds.com/images/thumbs/tv-screen-1-psd29071.png');
    width: 373px; /* 400 - 27 for padding */
    height: 294px; /* 322 - 28 for padding */
    padding: 27px 0 0 28px;
}​

DEMO

答案 2 :(得分:0)

实际上这很简单。您可以使用Chrome的右键单击&gt; “Inspect Element”或FireFox相当于看到有一个电视的图像(如你所做)和一个滑动图像元素:

position: absolute;
top: #px;
left: #px;

在通过jQuery或JavaScript处理滑动图像之前,您可以使用简单的图像测试此html / css