Implement caption overlay

master
Nikola Forró 6 years ago
parent 5d65886b9d
commit 267d90eb3e

@ -11,4 +11,49 @@
.instagram li {
display: inline;
width: 180px;
height: 180px;
margin-top: 0.8rem;
}
.instagram li a {
display: block;
position: relative;
overflow: hidden;
width: 100%;
height: 100%;
}
.instagram li a img {
display: block;
width: 100%;
height: 100%;
object-fit: cover;
transform: scale(1);
transition: all 1s;
}
.instagram li:hover a img {
transform: scale(1.05);
}
.instagram li a span {
display: block;
position: absolute;
left: 0;
top: 0;
width: 100%;
padding: 0.5rem;
font-size: 80%;
font-weight: 600;
color: #222;
background: rgba(243, 171, 0, 0.7);
text-align: center;
opacity: 0;
transform: translateY(-20px);
transition: all 0.3s;
}
.instagram li:hover a span {
transform: translateY(0px);
opacity: 1;
}

@ -2,7 +2,8 @@
{% for item in feed %}
<li>
<a href="https://www.instagram.com/p/{{ item.shortcode }}" target="_blank">
<img src="{{ item.display_url }}" title="{{ item.caption }}">
<img src="{{ item.display_url }}">
<span>{{ item.caption }}</span>
</a>
</li>
{% endfor %}

Loading…
Cancel
Save