一键获取模态图像

时间:2018-04-19 01:17:36

标签: javascript php html css

我试图制作脚本例如: 我从sql表的id获取图像,我得到列表图像

Image1 | Image2 | Image3 .......

我尝试制作当我点击Image1以模态显示这个图像。我有示例脚本,但是当我点击image2时,我无法获得图像并单击。只为Image1工作 有帮助吗?

我的示例脚本:

调用函数: - >

<img src="<?php echo $product_array[$key]["image"]; ?>" style="max- 
           width:100px;max-height:75px;" id="myImg"></div>
        <div id="myModal" class="modal">
        <span class="close">&times;</span>
        <img class="modal-content" id="img01">
        <div id="caption"></div>
        </div>

Javascript功能 - &gt;

<script>
var modal = document.getElementById('myModal');
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;
}
var span = document.getElementsByClassName("close")[0];
span.onclick = function() { 
    modal.style.display = "none";
}
</script>

CSS样式:

<style>

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

#myImg:hover {opacity: 0.7;
}

.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 */

}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

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

.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)}
}

.close {
    background:red;
    position: absolute;
    top: 63px;
    right: 275px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

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

@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
</style>

以及如何将其他图像放入相同的ID,例如:

Image1 | Image2 | Image3

我单击Image1并获取模态并向下模态显示我(1),2,3图像更多此Image1和当我点击(2)只是保持模态并更改此图像为id Image1和第二图像为这......也许任何一个人都理解我。抱歉我的语言。

1 个答案:

答案 0 :(得分:0)

如果您想在每张图片中打开相同型号,请点击class,而不是使用id。 或者如果你想在每个图像上打开不同的模型,那么你必须创建包含id的模型,如myModal1,myModal2,..和图像id,如myImg1,myImg2,.. 之后,您必须根据您必须打开模型的数字编写检测图像点击次数的代码。