我想知道如何实现这一点,因为我想要一些非常精简的东西并且不想使用灯箱。到目前为止,这是我的代码。它会自动为每张图片添加一个点击事件,并调用一个函数来显示大图所在的路径。现在我只需要在屏幕中央显示像模态窗口一样的大图像。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="Scripts/jquery-1.6.2.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#imageContainer img').each(function (index) {
if ($(this).attr('onclick') != null) {
if ($(this).attr('onclick').indexOf("runThis()") == -1) {
$(this).click(function () {
$(this).attr('onclick');
var src = $(this).attr("src");
ShowLargeImage(src);
});
}
}
else {
$(this).click(function () {
var src = $(this).attr("src");
ShowLargeImage(src);
});
}
});
});
function ShowLargeImage(imagePath) {
alert(imagePath.replace("small","large"));
}
</script>
</head>
<body>
<div id="imageContainer">
<br />
<br />
<img src="/img/small/image3.jpg" />
<br />
<br />
<img src="/img/small/image2.jpg" />
</div>
<br />
<img src="/img/small/image3.jpg" />
</body>
</html>