使用JavaScript和CSS实现点击图片缩略图,创建图片弹窗的功能。

需要配置HTML页面,JS代码和CSS代码

HTML代码:

<body>

    <!-- 图片缩略图,点击图片触发点击事件,以触发弹窗,将display:none去除即可显示图片 -->
    <img id="myImg" src="C:\Users\Administrator\Desktop\离职指引.jpg" alt="文本描述信息" width="300" height="200"
        style="display:none;">

    <!-- 弹窗 -->
    <div id="myModal" class="modal">

        <!-- 关闭按钮 -->
        <span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>

        <!-- 弹窗内容 -->
        <!-- 属性设置为模态框 -->
        <img class="modal-content" id="img01">

        <!-- 文本描述 -->
        <div id="caption">这是一张图片</div>
    </div>
    <a href="" onclick="document.getElementById('myImg').onclick();">点击查看离职指引</a>


</body>

CSS代码:

<style>
    /* 触发弹窗图片的样式 */
    #myImg {
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    #myImg:hover {
        opacity: 0.7;
    }

    /* 弹窗背景 */
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* 设置显示的优先层级级别 */
        z-index: 1234;
        /* 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 {
        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)
        }
    }

    /* 设置span标签的关闭按钮样式 */
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
    }

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

    /* 小屏幕中图片宽度为 100% */
    @media only screen and (max-width: 700px) {
        .modal-content {
            width: 100%;
        }
    }
</style>

JS代码:

<script>
    $(function () { //页面加载完完成后,自动触发点击事件创造弹窗
        SetImage();
        document.getElementById("myImg").onclick(); //触发一次点击事件
    });

    function SetImage() {
        // 获取DIV弹窗
        var modal = document.getElementById('myModal');

        // 获取图片插入到弹窗 - 使用 "alt" 属性作为文本部分的内容
        var img = document.getElementById('myImg');
        var modalImg = document.getElementById("img01"); //获取弹出图片元素
        var captionText = document.getElementById("caption"); //获得文本描述
        img.onclick = function openImage() { //注册原图片点击事件
            modal.style.display = "block"; //此元素将显示为块级元素,此元素前后会带有换行符。
            modalImg.src = this.src; //将原图片URL赋给弹出图片元素
            captionText.innerHTML = this.alt; //赋值文本内容给弹出框文本
        }

        // 获取 <span> 元素,样式设置为关闭按钮
        var span = document.getElementsByClassName("close")[0];

        // 当点击 (x), 关闭弹窗
        span.onclick = function () {
            modal.style.display = "none"; //将模态框属性设置为不可见
        }
    }
</script>

完成的代码:

<!doctype html>
<html lang="en">



<head>
    <meta charset="utf-8">
    <title>图片弹窗</title>
    <script type="text/javascript" src="C:\Users\Administrator\Desktop\前端js包\jquery-3.4.0.min.js"></script>
</head>

<style>
    /* 触发弹窗图片的样式 */
    #myImg {
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    #myImg:hover {
        opacity: 0.7;
    }

    /* 弹窗背景 */
    .modal {
        display: none;
        /* Hidden by default */
        position: fixed;
        /* 设置显示的优先层级级别 */
        z-index: 1234;
        /* 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 {
        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)
        }
    }

    /* 设置span标签的关闭按钮样式 */
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
    }

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

    /* 小屏幕中图片宽度为 100% */
    @media only screen and (max-width: 700px) {
        .modal-content {
            width: 100%;
        }
    }
</style>


<body>

    <!-- 图片缩略图,点击图片触发点击事件,以触发弹窗 -->
    <img id="myImg" src="C:\Users\Administrator\Desktop\离职指引.jpg" alt="文本描述信息" width="300" height="200"
        style="display:none;">

    <!-- 弹窗 -->
    <div id="myModal" class="modal">

        <!-- 关闭按钮 -->
        <span class="close" onclick="document.getElementById('myModal').style.display='none'">×</span>

        <!-- 弹窗内容 -->
        <!-- 属性设置为模态框 -->
        <img class="modal-content" id="img01">

        <!-- 文本描述 -->
        <div id="caption">这是一张图片</div>
    </div>
    <a href="" onclick="document.getElementById('myImg').onclick();">点击查看离职指引</a>


</body>

<script>
    $(function () { //页面加载完完成后,自动触发点击事件创造弹窗
        SetImage();
        document.getElementById("myImg").onclick(); //触发一次点击事件
    });

    function SetImage() {
        // 获取DIV弹窗
        var modal = document.getElementById('myModal');

        // 获取图片插入到弹窗 - 使用 "alt" 属性作为文本部分的内容
        var img = document.getElementById('myImg');
        var modalImg = document.getElementById("img01"); //获取弹出图片元素
        var captionText = document.getElementById("caption"); //获得文本描述
        img.onclick = function openImage() { //注册原图片点击事件
            modal.style.display = "block"; //此元素将显示为块级元素,此元素前后会带有换行符。
            modalImg.src = this.src; //将原图片URL赋给弹出图片元素
            captionText.innerHTML = this.alt; //赋值文本内容给弹出框文本
        }

        // 获取 <span> 元素,样式设置为关闭按钮
        var span = document.getElementsByClassName("close")[0];

        // 当点击 (x), 关闭弹窗
        span.onclick = function () {
            modal.style.display = "none"; //将模态框属性设置为不可见
        }
    }
    
	function openImage(){
        document.getElementById('myImg').onclick();
    }
</script>

</html>