aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtemplate/_includes.html2
-rwxr-xr-xtemplate/script.js10
2 files changed, 4 insertions, 8 deletions
diff --git a/template/_includes.html b/template/_includes.html
index 6615ff2..5151355 100755
--- a/template/_includes.html
+++ b/template/_includes.html
@@ -1,6 +1,6 @@
1<!-- user code --> 1<!-- user code -->
2 2
3<script src="/script.js?v=2022-07-22-02" async></script> 3<script src="/script.js?v=2022-08-14-02" async></script>
4 4
5<!-- Fathom - beautiful, simple website analytics --> 5<!-- Fathom - beautiful, simple website analytics -->
6<script src="https://cdn.usefathom.com/script.js" data-site="XHQARKXP" defer></script> 6<script src="https://cdn.usefathom.com/script.js" data-site="XHQARKXP" defer></script>
diff --git a/template/script.js b/template/script.js
index 796ea4f..c03883f 100755
--- a/template/script.js
+++ b/template/script.js
@@ -3,13 +3,9 @@ window.addEventListener('load', async () => {
3 // flip CV image on mouse over 3 // flip CV image on mouse over
4 const cvImage = document.querySelector('.cv-picture img'); 4 const cvImage = document.querySelector('.cv-picture img');
5 if (cvImage) { 5 if (cvImage) {
6 cvImage.addEventListener('mouseover', evt => { 6 setInterval(() => {
7 evt.target.style.transform = 'scaleX(-1)'; 7 cvImage.style.transform = cvImage.style.transform === 'scaleX(1)' ? 'scaleX(-1)' : 'scaleX(1)';
8 }); 8 }, 1000);
9
10 cvImage.addEventListener('mouseout', evt => {
11 evt.target.style.transform = 'scaleX(1)';
12 });
13 } 9 }
14 10
15}); 11});