单击显示大缩略图缩略图,但有多个容器

时间:2018-11-10 21:44:58

标签: javascript html css image thumbnails

在Stackoverflow上已经提出了许多类似的问题。但是几天后,在这里尝试了其他解决方案之后,我找不到与我要执行的操作完全匹配的任何

我想创建一个固定大小的容器,该容器距页面顶部的高度始终相同,而距页面左侧的边缘始终相同。容器的底部带有缩略图(最终将在右侧带箭头向上/向下滚动-尚未到此为止),上方显示了较大的图像,并在较大图像的右侧的单独框中显示了信息。每次单击缩略图时,较大的图像都会更改,以显示新缩略图的较大版本以及相应的信息。

所有缩略图图像均为150 x150。所有较大的图像均为300 x300。信息框中显示的信息为img alt文本。图像都与代码存储在同一文件夹中,并且具有相同的文件名,但更改了“ thumb”或“ large”。例如,“ image_01_thumb.png”或“ image_01_large.png”。

我的页面上有几个现有元素,默认是整个网站,我认为这很可能会引起问题。

$('#thumbs img').click(function() {
  $('#largeimage').attr('src', $(this).attr('src').replace('thumb', 'large'));
  $('#description').html($(this).attr('alt'));
});
* {
  margin: 0;
  padding: 0;
}

header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(pic1.png);
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.main-nav {
  float: right;
  list-style: none;
  margin-top: 45px;
}

.main-nav li {
  display: inline-block;
}

.main-nav li a {
  color: white;
  text-decoration: none;
  padding: 5px 20px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

.main-nav li.active a {
  border: 1px solid white;
}

.main-nav li a:hover {
  border: 1px solid white;
}

.logo img {
  width: 540px;
  height: auto;
  float: left;
}

body {
  font-family: monospace;
}

.row {
  max-width: 1200px;
  margin: auto;
}

#thumbs {
  padding-top: 10px;
  overflow: hidden;
}

#largeImage {
  padding: 4px;
}

#thumbs img {
  float: left;
  margin-right: 0px;
  opacity: 0.8;
  padding: 4px;
}

#thumbs img:hover {
  opacity: 1;
}

#description {
  background: black;
  color: white;
  position: relative;
  bottom: 0;
  padding: 10px 20px;
  width: 230px;
  margin: 5px;
}

#panel {
  position: relative;
}

#gallery {
  position: absolute;
  height: 520px;
  width: 660px;
  margin-left: 30px;
  margin-top: 180px;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!DOCTYPE html>
<html lang="en">

<head>
  <title>PROJECTS</title>
  <link rel="shorcut icon" href="favicon.png" type="image/png">
  <link rel="icon" href="favicon.png" type="image/x-icon">
  <link rel="stylesheet" href="style.css" type="text/css">
  <script type="text/javascript" script src="portgrid.js"></script>
</head>

<body>
  <header>
    <div class="row">
      <div class="logo">
        <img src="logo.png">
      </div>
      <ul class="main-nav">
        <li><a href="index.html">HOME</a></li>
        <li><a href="portabout.html">ABOUT</a></li>
        <li class="active"><a href="portprojects.html">PROJECTS</a></li>
        <li><a href="portconnect.html">CONNECT</a></li>
      </ul>
    </div>

    <!-- the image container -->
    <div id="gallery">
      <div id="panel">
        <img id="largeImage" src="image_01_large.png" />
      </div>
      <div id="thumbs">
        <img src="image_01_thumb.png" alt="TBN" />
        <img src="image_02_thumb.png" alt="Brain" />
        <img src="image_03_thumb.png" alt="AWG" />
        <img src="image_04_thumb.png" alt="Building" />
      </div>
    </div>

  </header>

1 个答案:

答案 0 :(得分:0)

代码还可以,问题是您在Js上拼写了大图像ID,是#largeImage而不是#largeimage

$('#thumbs img').click(function() {
    $('#largeImage').attr('src', $(this).attr('src').replace('thumb', 'large'));
    $('#description').html($(this).attr('alt'));
});