如何让图片随图像移动?

时间:2015-07-30 23:20:44

标签: javascript arrays

当页面调整大小时,如果用户使页面更长/更宽,我如何让我的标题随我的图像移动?我怎样才能让图片随图像移动而不留在原地?

如果您认为这不是一个正确的问题,或者没有正确陈述,请不要删除我的问题。

CSS:

#caption {
    position: absolute;
    padding: 10px;
    box-sizing: border-box;
    color: white;
    font-size: 14pt;
    font-family: sans-serif;
    background-color: #008800;
    opacity: 0.5;
    text-align: left;
    bottom:0px;
}

HTML:

<div style="text-align: Center;" id="photoSection">
    <img  id='photo' src='memchu.jpg' alt='photo' />
    <div id="caption">
        Stanford Memorial Church - the church used to have an 80' bell tower, which fell in the 1906 earthquake.
    </div>
    <div id="forwardOverlay"></div>
    <div id="backwardOverlay"></div>
</div>

JS:

"use strict";

var photoArray = [
    {filename: "memchu.jpg",
     caption: "Stanford Memorial Church - the church used to have an 80 bell tower, which fell in the 1906 earthquake."},
    {filename: "quad.jpg",
     caption: "The Stanford Quad"},
    {filename: "hoop.jpg",
     caption: "The <i>Red Hoop Fountain</i> with Green Library in the background."},
    {filename: "memorial-court.jpg",
     caption: "Memorial Court (in the front of the Quad) with Rodin's <i>Burghers of Calais</i> statues."},
    {filename: "gates.jpg",
     caption: "The Gates Building - home of Stanford Computer Science."},
    {filename: "stone-river.jpg",
     caption: "The Stone River statue near the Cantor Arts Center (Stanford's own art museum)."},
];

我试过了:

position: absolute;

但是当重新调整页面大小时,似乎没有将图片保留在图片上。

1 个答案:

答案 0 :(得分:0)

我认为这是你的事后,关键是显示:父母的表

#photoSection{display:table;margin:0 auto;position:relative;}
#photoSection img{max-width:100%;}
#caption {
 position:absolute;
 padding: 10px;
 color: white;
 font-size: 14pt;
 font-family: sans-serif;
 background-color: #008800;
 opacity: 0.5;
 text-align: left;
 bottom:0;
}

https://jsfiddle.net/sjmcpherso/dz0dyu6v/