如何创建 - 模态图像
了解如何使用 CSS 和 JavaScript 创建响应式模态图像。
模态图像
模态框是显示在当前页面顶部的对话框/弹出窗口。
这个例子使用了上一个例子中的大部分代码,Modal Boxes,只有在这个例子中,我们使用了图片。
×
步骤 1) 添加 HTML:
实例
<!-- 触发模态 -->
<img id="myImg" src="img_snow.jpg"
alt="Snow" style="width:100%;max-width:300px">
<!-- The Modal -->
<div id="myModal"
class="modal">
<!-- 关闭按钮 -->
<span class="close">×</span>
<!-- 模态内容(图像) -->
<img class="modal-content" id="img01">
<!-- 模态标题(图像文本) -->
<div id="caption"></div>
</div>
步骤 2) 添加 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: rgb(0,0,0);
/* 后备颜色 */
background-color: rgba(0,0,0,0.9);
/* 黑色带不透明度 */
}
/* 模态内容(图像) */
.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 {
animation-name: zoom;
animation-duration: 0.6s;
}
@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;
}
/* 100% 小屏幕上的图像宽度 */
@media only screen and (max-width: 700px){
.modal-content {
width: 100%;
}
}
步骤 3) 添加 JavaScript:
实例
// 获取模态
var modal = document.getElementById("myModal");
// 获取图像并将其插入模态框 - 使用其“alt”文本作为标题
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;
}
// 获取关闭 modal 的 <span> 元素
var span = document.getElementsByClassName("close")[0];
// 当用户点击 <span>(x) 时,关闭 modal
span.onclick = function() {
modal.style.display = "none";
}
亲自试一试 »