javascript - 单击时展开的并排 GIF

标签 javascript html css gif

首先,我是编码新手。我试图将两个 gif 并排放置,当点击时展开成一个弹出窗口并且视频被放大。我已经成功地并排获得图像。单击第一个 gif 时会展开,并按我想要的方式进行操作。但第二个 gif 没有。我相信这与两者相同有关,但我不确定如何使用一个类或多个 id 来使模态正常工作。一些帮助将不胜感激!附件是我的代码。

// Get the modal
var modal = document.getElementById('myModal');

// Get the image and insert it inside the modal - use its "alt" text as a caption
var img = document.getElementById("myImg");
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
img.onclick = function() {
  modal.style.display = "block";
  modalImg.src = this.src;
  captionText.innerHTML = this.alt;
}

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on <span> (x), close the modal
span.onclick = function() {
  modal.style.display = "none";
}
.column {
  float: left;
  width: 50%;
  padding: 5px;
}


/* Clearfix (clear floats) */

.row::after {
  content: "";
  clear: both;
  display: table;
}


/*Image Loops*/

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {
  opacity: 0.7;
}


/* The Modal (background) */

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgb(0, 0, 0);
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
}


/* Modal Content (image) */

.modal-content {
  margin: auto;
  display: block;
  width: 1600px;
  height: 800px;
}


/* Caption of Modal Image */

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
  font-size: 20px;
}


/* Add Animation */

.modal-content,
#caption {
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0)
  }
  to {
    -webkit-transform: scale(1)
  }
}

@keyframes zoom {
  from {
    transform: scale(0)
  }
  to {
    transform: scale(1)
  }
}


/* The Close Button */

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}


/* 100% Image Width on Smaller Screens */

@media only screen and (max-width: 700px) {
  .modal-content {
    width: 100%;
  }
}
<div class="row">
  <div class="column">
    <img id="myImg" src="image.gif" alt="img" text-align="center" style="width:100%"><br>
  </div>
  <div class="column">
    <img id="myImg" src="image2.gif" alt="image2" text-align="center" style="width:100%"><br>
  </div>
</div>
<!-- The Modal -->
<div id="myModal" class="modal">
  <span class="close">&times;</span>
  <img class="modal-content" id="img01">
  <div id="caption"></div>
</div>

最佳答案

首先这部分在这里:

var img = document.getElementById("myImg");

仅获取具有此 ID 的第一个元素。 ID 应该是唯一的。



解决这个问题的方法是改用类,但这种方法存在问题。问题是当您通过 Classname 获取元素时,它会返回 HTML 集合,您不能在不循环的情况下绑定(bind)事件,这会使事情变得复杂。 因此,最好的解决方案不是绑定(bind)事件,而是使用 onClick 作为属性并调用函数。

解决方案

var modal = document.getElementById('myModal');

// Get the image and insert it inside the modal - use its "alt" text as a caption
var modalImg = document.getElementById("img01");
var captionText = document.getElementById("caption");
 function modalOpen(src,alt){
    modal.style.display = "block";
    modalImg.src = src;
    captionText.innerHTML = alt;
 }

// Get the <span> element that closes the modal
var span = document.getElementsByClassName("close")[0];

// When the user clicks on <span> (x), close the modal
span.onclick = function() { 
    modal.style.display = "none";
}
.column {
        float: left;
        width: 50%;
        padding: 5px;
    }
    
    /* Clearfix (clear floats) */
    .row::after {
        content: "";
        clear: both;
        display: table;
    }
    .caption{
    text-align:center
    }
    /*Image Loops*/
    
    #myImg {
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    
    }
    
    #myImg:hover {opacity: 0.7;}
    
    /* The Modal (background) */
    .modal {
        display: none; /* Hidden by default */
        position: fixed; /* Stay in place */
        z-index: 1; /* Sit on top */
        padding-top: 100px; /* Location of the box */
        left: 0;
        top: 0;
        width: 100%; /* Full width */
        height: 100%; /* Full height */
        overflow: auto; /* Enable scroll if needed */
        background-color: rgb(0,0,0); /* Fallback color */
        background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
    }
    
    /* Modal Content (image) */
    .modal-content {
        margin: auto;
        display: block;
        width: 1600px;
        height: 800px;
    }
    
    /* Caption of Modal Image */
    #caption {
        margin: auto;
        display: block;
        width: 80%;
        max-width: 700px;
        text-align: center;
        color: #ccc;
        padding: 10px 0;
        height: 150px;
        font-size: 20px;
    }
    
    /* Add Animation */
    .modal-content, #caption {    
        -webkit-animation-name: zoom;
        -webkit-animation-duration: 0.6s;
        animation-name: zoom;
        animation-duration: 0.6s;
    }
    
    @-webkit-keyframes zoom {
        from {-webkit-transform:scale(0)} 
        to {-webkit-transform:scale(1)}
    }
    
    @keyframes zoom {
        from {transform:scale(0)} 
        to {transform:scale(1)}
    }
    
    /* The Close Button */
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: white;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
    }
    
    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }
    
    /* 100% Image Width on Smaller Screens */
    @media only screen and (max-width: 700px){
        .modal-content {
            width: 100%;
        }
    }
<div class="row">
    <div class="column">
    <img id="myImg" onclick="modalOpen(this.src,this.alt)" src="http://via.placeholder.com/128x128" alt="img" text-align="center" style="width:100%"><p class="caption">img</p><br>
</div>
    <div class="column">
    <img id="myImg" onclick="modalOpen(this.src,this.alt)" src="http://via.placeholder.com/129x129" alt="image2" text-align="center" style="width:100%"><p class="caption">image2</p><br>
</div>
</div>


<!-- The Modal -->
<div id="myModal" class="modal">
  <span class="close">&times;</span>
  <img class="modal-content" id="img01">
  <div id="caption"></div>
</div>

关于javascript - 单击时展开的并排 GIF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52109268/

相关文章:

javascript - VueJs 将 bool 值绑定(bind)到下拉列表

javascript - 如何返回最后一个push()嵌入文档

Javascript:如果第一个下拉列表的值大于第二个,如何从第二个下拉列表中删除选项,反之亦然?

css - Laravel 4 - CSS 未加载

javascript - 在 javascript 中使用 fetch 时访问 header

css - 如何将此 CSS 规则用于 div? [JSFiddle]

html - 定位和高度在 Firefox/IE 中无法正常工作

css 突然丢失第二个相对的 float 元素?

html - 如何在输入字段的值内加载字体超棒的图标

java - 从 JavaScript 调用托管 bean 方法以最终填充 Primefaces 对话框组件