aboutsummaryrefslogtreecommitdiff
path: root/themes/default/layouts/shortcodes/animate.html
blob: 5d72671c425a49c6ab782e62086ea1e7bc35c3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{- $type := default "default" (.Get "type" | default (.Get 0)) -}}
{{- $text := default "animate" (.Get "text" | default (.Get 1)) -}}

{{- $letters := split $text "" -}}

<text-animation {{ $type }}>
{{- range $value, $letter := $letters -}}
  <span style="--frame:{{ $value }}">{{ $letter }}</span>
{{- end -}}
</text-animation>
{{- /* This comment removes trailing newlines and white spaces. */ -}}