15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
|
$(function () {
|
||
|
"use strict";
|
||
|
|
||
|
$(".popup img").click(function () {
|
||
|
var $src = $(this).attr("src");
|
||
|
$(".show").fadeIn();
|
||
|
$(".img-show img").attr("src", $src);
|
||
|
});
|
||
|
|
||
|
$("span, .overlay").click(function () {
|
||
|
$(".show").fadeOut();
|
||
|
});
|
||
|
|
||
|
});
|