pelican-theme-bootstrap4/static/js/image-popup.js
2019-04-21 12:12:43 +03:00

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();
});
});