···
82
82
<div class="container">
83
83
<h1 class="title {active}">{selected}</h1>
84
84
<div class="links">
85
85
-
{#each links as { url, icon, blurb, title }, index}
86
86
-
<a href={url} target="_blank" aria-label={blurb} on:mouseover={()=> { selected = title; }}
87
87
-
on:focus={() => { selected = title; }}
88
88
-
on:mouseout={() => { selected = 'Morgan'; }}
89
89
-
on:blur={() => { selected = 'Morgan'; }}
85
85
+
{#each links as { url, icon, blurb, title, svg_file }, index}
86
86
+
<a href={url} target="_blank" aria-label={blurb} onmouseover={()=> { selected = title; }}
87
87
+
onfocus={() => { selected = title; }}
88
88
+
onmouseout={() => { selected = 'Morgan'; }}
89
89
+
onblur={() => { selected = 'Morgan'; }}
90
90
transition:fade={{ duration: 800, delay: 150 * index }}
91
91
>
92
92
{#if svg_file}