mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-19 13:51:01 +00:00
Fix no opacity transition issue of image viewer when first click (#374)
This commit is contained in:
parent
d51f2883aa
commit
c5c0e2bfe5
4 changed files with 5 additions and 4 deletions
|
@ -1706,6 +1706,7 @@ form .post {
|
||||||
|
|
||||||
/* Image viewer */
|
/* Image viewer */
|
||||||
#image-viewer {
|
#image-viewer {
|
||||||
|
display: none;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
@ -1715,8 +1716,8 @@ form .post {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
width: 100dvw;
|
width: 100dvw;
|
||||||
height: 100dvh;
|
height: 100dvh;
|
||||||
|
opacity: 0;
|
||||||
background: rgb(0 0 0 / 75%);
|
background: rgb(0 0 0 / 75%);
|
||||||
transition: opacity 350ms;
|
|
||||||
z-index: 100;
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
set <#image-viewer figcaption />'s textContent to ''
|
set <#image-viewer figcaption />'s textContent to ''
|
||||||
end
|
end
|
||||||
</script>
|
</script>
|
||||||
<figure id="image-viewer" style="display: none" _="on click imageviewer.close()">
|
<figure id="image-viewer" _="on click imageviewer.close()">
|
||||||
<picture>
|
<picture>
|
||||||
<img src="" alt=""/>
|
<img src="" alt=""/>
|
||||||
</picture>
|
</picture>
|
|
@ -73,7 +73,7 @@
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
{% block full_content %}
|
{% block full_content %}
|
||||||
{% include 'activities/_modal_image.html' %}
|
{% include 'activities/_image_viewer.html' %}
|
||||||
{% block pre_content %}
|
{% block pre_content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
<div class="columns">
|
<div class="columns">
|
||||||
|
|
|
@ -27,7 +27,7 @@
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<div id="main-content">
|
<div id="main-content">
|
||||||
{% include "activities/_modal_image.html" %}
|
{% include "activities/_image_viewer.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue