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



我正在写一个网站介绍页面,真的很喜欢这个页面上的风格:http://www.davidhutton.com/在另一个这样的图像中有移动图像/视频的地方。

为了简化起见,我怎么可以将图像放在这里的电视容器中:http://jsfiddle.net/h9Nn3/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>

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

<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;
}​

演示

其实很简单

。您可以使用Chrome的右键单击>"检查元素"或FireFox等效功能来查看是否有电视图像(就像您所做的那样)和一个滑动图像元素:

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

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

相关内容

  • 没有找到相关文章

最新更新