以下是一个简单的示例代码,展示了如何使用JavaScript关闭Lightbox:
<!DOCTYPE html>
<html>
<head>
<style>
/* CSS样式代码省略,用于定义Lightbox样式 */
</style>
</head>
<body>
<div id="lightbox" class="lightbox">
<!-- Lightbox内容省略 -->
<button id="closeButton" class="close-button">关闭</button>
</div>
<script>
// 找到关闭按钮元素
var closeButton = document.getElementById("closeButton");
// 为关闭按钮绑定点击事件
closeButton.addEventListener("click", function() {
var lightbox = document.getElementById("lightbox");
// 隐藏Lightbox
lightbox.style.display = "none";
// 恢复页面滚动
document.body.style.overflow = "auto";
// 停止或重置媒体播放
// ...
// 其他关闭操作
// ...
});
</script>
</body>
</html>
请注意,以上仅是示例产品,腾讯云还有更多产品和解决方案可供选择和使用。
领取专属 10元无门槛券
手把手带您无忧上云