parent
9ab6b65570
commit
c306300f2c
5 changed files with 8 additions and 121 deletions
@ -1,20 +0,0 @@ |
||||
window.addEventListener("load", () => { |
||||
document.querySelectorAll("figure.enlargable").forEach(node => { |
||||
node.addEventListener("click", () => { |
||||
console.log("Hey"); |
||||
node.classList.toggle("enlarged") |
||||
}) |
||||
}) |
||||
|
||||
const keyDown = (e) => { |
||||
if (e.keyCode !== 27) { |
||||
return |
||||
} |
||||
|
||||
document.querySelectorAll("figure.enlarged").forEach(node => { |
||||
node.classList.remove("enlarged") |
||||
}) |
||||
} |
||||
|
||||
document.addEventListener('keydown', keyDown) |
||||
}) |
@ -1,34 +1,9 @@ |
||||
{{- $orignal := resources.Get .path }} |
||||
{{- $png := $orignal.Resize (printf "%dx%d png q50" $orignal.Width $orignal.Height) }} |
||||
{{- $webp := $orignal.Resize (printf "%dx%d webp q50" $orignal.Width $orignal.Height) }} |
||||
{{- $pngFull := $orignal.Resize (printf "%dx%d webp q100" $orignal.Width $orignal.Height) }} |
||||
{{- $webpFull := $orignal.Resize (printf "%dx%d webp q100" $orignal.Width $orignal.Height) }} |
||||
{{- $png := $orignal.Resize (printf "%dx%d png q75" $orignal.Width $orignal.Height) }} |
||||
{{- $webp := $orignal.Resize (printf "%dx%d webp q75" $orignal.Width $orignal.Height) }} |
||||
<picture> |
||||
<source type="image/webp" srcset="{{ $webp.Permalink }}"> |
||||
<img |
||||
src="{{ $png.Permalink }}" |
||||
alt="{{ .alt | default "" }}" |
||||
title="{{ .alt }}" |
||||
width="{{ .width | default $png.Width }}" |
||||
height="{{ .height | default $png.Height }}" |
||||
{{- if .class}}class="{{ .class }}" {{end}} |
||||
{{- if .style}}style="{{ .style | safeCSS }}" {{end}} /> |
||||
</picture> |
||||
|
||||
<div class="enlarged_image"> |
||||
<picture> |
||||
<source type="image/webp" srcset="{{ $webpFull.Permalink }}"> |
||||
<img |
||||
src="{{ $pngFull.Permalink }}" |
||||
alt="{{ .alt | default "" }}" |
||||
loading="lazy" |
||||
title="{{ .alt }}" |
||||
width="{{ .width | default $pngFull.Width }}" |
||||
height="{{ .height | default $pngFull.Height }}" |
||||
{{- if .class}}class="{{ .class }}" {{end}} |
||||
{{- if .style}}style="{{ .style | safeCSS }}" {{end}} /> |
||||
</picture> |
||||
{{- with .alt }} |
||||
<p class="caption">{{ . }}</p> |
||||
{{- end }} |
||||
</div> |
||||
<img src="{{ $png.Permalink }}" alt="{{ .alt | default "" }}" title="{{ .alt }}" |
||||
width="{{ .width | default $png.Width }}" height="{{ .height | default $png.Height }}" |
||||
{{- if .class}}class="{{ .class }}" {{end}} {{- if .style}}style="{{ .style | safeCSS }}" {{end}} /> |
||||
</picture> |
Loading…
Reference in new issue