Add inline spoiler shortcode with hover effect and styling
This commit is contained in:
parent
db32409194
commit
fd6975964f
1 changed files with 32 additions and 0 deletions
32
layouts/shortcodes/inline-spoiler.html
Normal file
32
layouts/shortcodes/inline-spoiler.html
Normal file
|
@ -0,0 +1,32 @@
|
|||
<!-- https://oostens.me/posts/hugo-inline-spoiler-shortcode/ -->
|
||||
|
||||
<style>
|
||||
.inline-spoiler {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
.inline-spoiler::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
border-radius: 1px;
|
||||
color: white;
|
||||
background: black;
|
||||
opacity: 1;
|
||||
transition: opacity 0.7s ease, transform 0.3s ease;
|
||||
}
|
||||
|
||||
.inline-spoiler:hover::before {
|
||||
opacity: 0;
|
||||
transform: translateY(-50%)rotateX(80deg);
|
||||
transition: opacity 1.0s ease, transform 0.5s ease;
|
||||
transition-delay: 0.3s; <!-- To not accidentally reveal the spoiler when hovering over the page -->
|
||||
}
|
||||
</style>
|
||||
|
||||
<span class="inline-spoiler">{{- .Inner | safeHTML -}}</span>
|
Loading…
Add table
Add a link
Reference in a new issue