Remove image popup

This commit is contained in:
Andrei Astafev 2019-04-21 12:40:15 +03:00
parent 947c137b2c
commit dc905e43a9
4 changed files with 0 additions and 69 deletions

View File

@ -329,50 +329,3 @@ pre, code, kbd, samp
.panel { .panel {
padding-bottom: 12px; padding-bottom: 12px;
} }
.popup{
width: 900px;
margin: auto;
text-align: center
}
.popup img{
width: 200px;
height: 200px;
cursor: pointer
}
.show{
z-index: 999;
display: none;
}
.show .overlay{
width: 100%;
height: 100%;
background: rgba(0,0,0,.66);
position: absolute;
top: 0;
left: 0;
}
.show .img-show{
width: 600px;
height: 400px;
background: #FFF;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
overflow: hidden
}
.img-show span{
position: absolute;
top: 10px;
right: 10px;
z-index: 99;
cursor: pointer;
}
.img-show img{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
}

View File

@ -1,14 +0,0 @@
$(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();
});
});

View File

@ -87,13 +87,6 @@
</div> </div>
{{ article.content }} {{ article.content }}
</div> </div>
<div class="show">
<div class="overlay"></div>
<div class="img-show">
<span>X</span>
<img src="">
</div>
</div>
<!-- /.entry-content --> <!-- /.entry-content -->
{% include 'includes/related-posts.html' %} {% include 'includes/related-posts.html' %}
{% include 'includes/series.html' %} {% include 'includes/series.html' %}

View File

@ -265,7 +265,6 @@
{% if BANNER %} {% if BANNER %}
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/bodypadding.js"></script> <script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/bodypadding.js"></script>
{% endif %} {% endif %}
<script src="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/js/image-popup.js"></script>
{% include 'includes/sidebar/github-js.html' %} {% include 'includes/sidebar/github-js.html' %}
{% include 'includes/disqus_script.html' %} {% include 'includes/disqus_script.html' %}
{% include 'includes/ga.html' %} {% include 'includes/ga.html' %}