日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

图片弹框

發布時間:2025/3/12 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 图片弹框 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

用js實現圖片彈框的特效。

效果展示

代碼展示

html內容

<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title></title></head><body><img id="myImg" src="img/c_7.jpg" alt="文本內容" width="300" height="200"><div class="modal" id="myModal"><span class="close" οnclick="document.getElementById('myModal').style.display='none'">&times;</span><img class="modal-content" id="img"><div id="text"></div> </div> </body></html>

css內容

#myImg{border-radius: 5px;cursor:pointer;transition:0.3s;}#myImg:hover{opacity:0.7;}.modal{display:none; position: fixed;z-index: 1;padding-top:100px;left:0;top: 0;width:100%;height: 100%;overflow: auto;background-color: rgba(0,0,0,0.9);}/* 圖片*/.modal-content{margin: auto;display: block;width:80%;max-width: 700px;}/* 文本內容*/#text{margin: auto;display: block;width:80%;max-width: 700px;text-align:center;color:#ccc;padding:10px 0;height: 150px;}.modal-content, #text { -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 {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;}@media only screen and (max-width: 700px){.modal-content {width: 100%;}}

js內容

var modal = document.getElementById('myModal');var img = document.getElementById('myImg');var modalImg = document.getElementById("img");var captionText = document.getElementById("text");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";}

了解更多關注我喲!!!

總結

以上是生活随笔為你收集整理的图片弹框的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。