- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我想在同一行中同时在左侧显示一张图像,在右侧显示另一张图像,以便它在每个设备上都能响应。那我该怎么办?正如您在给定的 iphone 和耳机图像示例中所见。
我正在努力实现 this .
问题是这是响应式的,因此像 iphone、 Logo 、耳机这样的单独图像会在较小的屏幕中堆叠在彼此下方。
HTML:
<div class="jumbotron" style="background-image: url('background.png'); width: 100%; height: 100%;position: absolute; top: 0; left: 0; overflow: hidden; background-size: cover;
background-repeat: no-repeat;">
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
<div id="iphone" class="col-xs-4">
</div>
<div id="camera" class="col-xs-4">
</div>
</div>
<div class="col-md-4">
nothing
</div>
<div class="col-md-4">
<div id="headphones" class="col-xs-4">
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div id="notebook" class="col-xs-4">
</div>
<div id="glasses" class="col-xs-4">
</div>
</div>
<div class="col-md-4">
<div id="logo" class="col-xs-4">
</div>
</div>
<div class="col-md-4">
<div id="gopro" class="col-xs-4">
</div>
<div id="controller" class="col-xs-4">
</div>
</div>
</div>
<div class="row">
<div class="col-md-3">
<div id="cookie" class="col-xs-4">
</div>
<div id="tea" class="col-xs-4">
</div>
</div>
<div class="col-md-6">
<div id="macbook" class="col-xs-4">
</div>
</div>
<div class="col-md-3">
<div id="pen" class="col-xs-4">
</div>
<div id="harddisk" class="col-xs-4">
</div>
<div id="iwatch" class="col-xs-4">
</div>
</div>
</div>
</div>
</div>
CSS:
/********************iphone*******************************/
#iphone
{
position: relative;
top:-110px;
left:-140px;
background-image: url('../images/New Folder/iPhone.-3.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
float: left;
width: 200px;
height: 196px;
padding-top: 102.04%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
}
@media only screen and (max-width: 767px) {
#iphone { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#iphone {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#iphone { height: auto;
max-width:100%; }
}
/********************headphones***************************/
#headphones
{
position: relative;
float: right;
top:-30px;
right:-130px;
background-image: url('../images/New Folder/headphones-2.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 400px;
height: 450px;
padding-top: 102.04%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
}
@media only screen and (max-width: 767px) {
#headphones { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#headphones {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#headphones { height: auto;
max-width:100%; }
}
/******************camera***********************/
#camera
{
position: relative;
top:110px;
left:-300px;
background-image: url('../images/New Folder/camera-2.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 160px;
height: 182px;
padding-top: 102.04%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
}
@media only screen and (max-width: 767px) {
#camera { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#camera {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#camera { height: auto;
max-width:100%; }
}
/***********notebook*******************/
#notebook
{
position: relative;
top:-190px;
left:-130px;
background-image: url('../images/New Folder/moleskine-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 300px;
height: 275px;
padding-top: 109.47%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
}
@media only screen and (max-width: 767px) {
#notebook { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#notebook {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#notebook { height: auto;
max-width:100%; }
}
/****************glasses******************/
#glasses
{
position: absolute;
top:-110px;
left:0px;
background-image: url('../images/New Folder/glasses-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 250px;
height: 156px;
padding-top: 192.36%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#glasses { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#glasses {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#glasses { height: auto;
max-width:100%; }
}
/**************logo************************/
#logo
{
position: relative;
top:-300px;
left:0px;
background-image: url('../images/New Folder/logo-transparent.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:200%;
display:block;
width: 3800px;
height: 1800px;
padding-top: 225.07%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#logo { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#logo {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#logo { height: auto;
max-width:100%; }
}
/******************gopro*****************/
#gopro
{
position: relative;
top:-100px;
left:0px;
background-image: url('../images/New Folder/GoPro-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 120px;
height: 121px;
float: right;
padding-top: 95.02%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#gopro { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#gopro {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#gopro { height: auto;
max-width:100%; }
}
/********************controller****************/
#controller
{
position: relative;
top:-100px;
left:240px;
background-image: url('../images/New Folder/console-2.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 50px;
height: 95px;
padding-top: 68.9%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
float: left;
}
@media only screen and (max-width: 767px) {
#controller { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#controller {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#controller { height: auto;
max-width:100%; }
}
/**************tea****************/
#tea
{
position: absolute;
top:-870px;
left:100px;
background-image: url('../images/New Folder/tea-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 180px;
height: 160px;
padding-top: 95.9%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
float: right;
}
@media only screen and (max-width: 767px) {
#tea { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#tea {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#tea { height: auto;
max-width:100%; }
}
/****************cookie****************/
#cookie
{
position: absolute;
top:-870px;
left:0px;
background-image: url('../images/New Folder/cookies-2.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 90px;
height: 82px;
padding-top: 95.9%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#cookie { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#cookie {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#cookie { height: auto;
max-width:100%; }
}
/****************macbook****************/
#macbook
{
position: relative;
top:-1000px;
left:0px;
background-image: url('../images/New Folder/MacBook-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 550px;
height: 447px;
padding-top: 123.04%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#macbook { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#macbook {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#macbook { height: auto;
max-width:100%; }
}
/**************************harddisk*****************/
#harddisk
{
position: absolute;
top:-1000px;
left:250px;
background-image: url('../images/New Folder/hard-disk-1.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 300px;
height: 325px;
padding-top: 92.302%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
float: right;
}
@media only screen and (max-width: 767px) {
#harddisk { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#harddisk {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#harddisk { height: auto;
max-width:100%; }
}
/********************iwatch*****************************/
#iwatch
{
position: absolute;
top:-900px;
left:0px;
background-image: url('../images/New Folder/iWatch-4.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 300px;
height: 213px;
padding-top: 127.79%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
float:left;
}
@media only screen and (max-width: 767px) {
#iwatch { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#iwatch {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#iwatch { height: auto;
max-width:100%; }
}
/****************pen*******************/
#pen
{
position: absolute;
top:-870px;
left:-50px;
background-image: url('../images/New Folder/handle.png');
background-size: contain;
background-repeat: no-repeat;
z-index:100;
height: auto;
max-width:100%;
display:block;
width: 150px;
height: 177px;
padding-top: 84.79%; /* (img-height / img-width * container-width) */
/* (853 / 1280 * 100) */
z-index: 1000;
}
@media only screen and (max-width: 767px) {
#pen { height: auto;
max-width:50%; }
}
@media only screen and (min-width: 768px) {
#pen {height: auto;
max-width:60%; }
}
@media only screen and (min-width: 1280px) {
#pen { height: auto;
max-width:100%; }
}
.row
{
height: 33%;
}
最佳答案
HTML
<div class="wrapper col-md-3">
<img class="img-responsive" src="https://www.google.co.uk/images/srpr/logo11w.png"/>
</div>
<div class="wrapper col-md-6">
<img class="img-responsive" src="https://www.google.co.uk/images/srpr/logo11w.png"/>
</div>
CSS
.wrapper { float: left; clear: left; display: table; table-layout: fixed; }
img.img-responsive { display: table-cell; max-width: 100%; }
.col-md-6 { width: 25%; float: left;}
.col-md-3 { width: 25%; float: right;}
关于html - 修复图像在页面左侧、中心和右侧的位置,但也具有响应性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32807754/
似乎这是不可能的,但如果有人提示如何在谷歌浏览器中创建右侧边栏(如 iframe),任何提示都会有所帮助。谢谢。 最佳答案 如果你的意思是这样的 这是来自 google chrome 实验 api:
您好,我在用 C 语言解决编程任务时遇到问题。 The funktion "Trim" should replace all spaces at the end of a String with nu
有什么方法可以找到一个事件(或属性或方法或类似的东西)来检测窗口停靠到左侧或右侧吗? 描述: 通过 WindowState 属性,您可以了解当您的窗口在正常/最小化/最大化这三种状态之间改变状态时。在
我目前需要找到一个算法来确定一个点是在圆弧的右侧还是左侧。 这是以下算法的扩展以包含弧: // isLeft(): tests if a point is Left|On|Right of an i
我正在使用 Selenium 执行测试,该测试在 3 个浏览器上并行执行。我想以下一种方式定位 window :左侧,右侧和底部,所以基本上我正在寻找与 (start btn+left btn...)
如果我有下面的代码,并且我想插入一个带有 jquery 的 div 作为表单标记内的第一个元素,那么最好的方法是什么? //i want to insert a div here with
有没有比这个更好的方法来解决这个问题? def 渲染(arr): single_elements = [] double_elements = [] for i in xrange(len(arr
Home About
我遇到的问题是: www.dondolomemories.it 当调整窗口大小时, Logo 图像直到最后一刻才调整大小,导致可怕的两行菜单溢出。 我花了将近 2 个小时尝试大量不同的设置。有人可以帮
我希望我能很好地解释这一点。我有一个 style="float: right;"的 div在这个 div 中,我有一个包含一些编辑器字段的表。但现在我想要两个文本编辑器框(在 .NET MVC3 @H
如果有人能帮助我解决这个问题,我将不胜感激,因为我无法让它工作。 这是我正在努力处理的代码:http://jsfiddle.net/sp91c3nk/ 基本上,我希望右侧导航栏与灰色主要内容区域处于同
我正在尝试在图像的所有四个边上添加文本,但我无法让正确的文本正确对齐。右边的文字仍然在左边。 fiddle :https://jsfiddle.net/y75L0ww9/ Text on top Te
我正在尝试为顶部以及左侧和右侧设置 css 阴影,但高度降低。我熟悉模糊/半径,但我希望阴影非常短。 picture from wix template (还不能上传,抱歉) 有人可以帮帮我吗?我看到
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 6 年前。 Improve
请看这个jsfiddle . 我想要 与 innerText “嗨!”始终出现在其包含父级的可见部分的底部/右侧。它不应与其父级的内容一起滚动。 HTML: Header
我有一个输入框和一个提交按钮。 当我向右浮动提交按钮时,我希望它在与输入字段相同的点结束 - 这是我的意思的一个例子:http://prntscr.com/aggln5 目前,输入和提交在不同的点结束
我基本上刚刚开始让我的网站响应,但出于某种原因,语言 div (#lang) 设置为向右浮动,正在向右浮动,但在它的右侧有一个小边距。虽然没有填充设置父 div #container,但我无法理解。
我目前正在创建一个网站,该网站有一个带有文本等内容的居中框。现在,我还想要一个漂浮在右边的盒子,与我的主盒子有一点缝隙。留个图吧,我画的红框就是我要制作的 float 框。 顺便说一句。蓝色方框只是我
我不是 UI 开发人员,但这次需要玩 css。为用户配置文件编写表单。我快完成了,但还有一个小问题。问题 个人资料图片未正确显示在右侧。 因此,第一个字段(组织名称)显示不正确 自从过去两个小时以来,
我有以下脚本: http://jsfiddle.net/rYFEY/12/ 效果很好,除了我需要移除右侧和右下角的 handle ,只留下底部 handle 用于调整大小。目前,如果我点击右 hand
我是一名优秀的程序员,十分优秀!