账号  

密码  

<<返回列表下一个上一个收藏 打印本文 复制本文地址

339

查看

0

回复
主题:点击div容器内图片弹窗js [收藏主题]  
lan988 当前离线

288

主题

210

广播

31

粉丝
添加关注
级别:管理员
用户积分:182 分
登录次数:1101 次
注册时间:2007-3-30
最后登录:2024-11-27
lan988 发表于:2024-7-2 23:18:59   | 只看该作者 查看该作者主题 楼主 
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <title>JS图片弹窗</title>
<style type="text/css">
  html,
  body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .popup {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #small {
    width: 300px;
    height: 200px;
    border: 10px solid rgba(35, 36, 35, 0.6);
    z-index: 1;
  }
  #small img {
    width: 100%;
    height: 100%;
    cursor: pointer;
    /* transition: 0.3s; */
  }
  #small img:hover {
    opacity: 0.5;
  }
  #magnify {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #ebe7e7;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
  }
  .close:hover,  .close:focus {
    color: rgb(156, 153, 153);
    text-decoration: none;
    cursor: pointer;
  }
  .content {
    margin: auto;
    display: block;
    max-width: 800px;
    width: 80%;
  }
  .describe {
    margin: auto;
    display: block;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
  }
  .content,  .describe {
    -webkit-animation-name: Eject;
    -webkit-animation-duration: 5s;
    animation-name: Eject;
    animation-duration: 5s;
  }
  @-webkit-keyframes Eject {
    from {
      -webkit-transform: scale(0)
    }
    to {
      -webkit-transform: scale(1)
    }
  }
  @keyframes Eject {
    from {
      transform: scale(0)
    }

    to {
      transform: scale(1)
    }
  }  
</style>
</head>
<body>
  <div class="popup">
    <div id="small">
    <img src="/UploadFiles/clubfiles/2024-07/2024070222295885741.jpg "width="300" height="300"/>
    </div>
    <div id="magnify">
      <span class="close">×</span>
      <img class="content">
      <span class="describe"></span>
    </div>
  </div>
</body>
<script>
    var magnify = document.getElementById('magnify');
    var small = document.getElementById('small');
    var img = small.children[0];
    var close = magnify.children[0];
    var magnifyImg = magnify.children[1];
    var describe = magnify.children[2];
    img.onclick = function () {
      magnify.style.display = "block";
      magnifyImg.src = this.src;
      describe.innerHTML = this.alt;
    }
    close.onclick = function () {
      magnify.style.display = "none";
    }
</script>
</html>
 
 
专业从事风水,命理,择日,取名等。
本站是提供个人知识管理的网络存储空间,所有非本站原创内容均由用户发布,不代表本站观点。如发现有害或侵权内容,请点击这里 举报
  支持(0) | 反对(0) 回到顶部顶端 回到底部底部
<下一主题 | 上一主题 >
风水自学网有限公司 © 2016-2025 版权所有 页面执行0.07227秒 powered by KesionCMS 9.0