Skip to content

Commit

Permalink
updated links
Browse files Browse the repository at this point in the history
  • Loading branch information
iguannalin committed Oct 28, 2023
1 parent d119678 commit 3c223c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ <h1>anna y lin</h1>
<tr><th>projects</th></tr>
</thead>
<tbody id="projects-table">
<tr>
<td><a title="external link to private work portfolio" target="_blank" href="login.html">professional work</a></td>
</tr>
</tbody>
<tbody>
<tr><td><a href="https://www.instagram.com/badwatercolor/">badwatercolor</a></td></tr>
Expand All @@ -93,9 +96,6 @@ <h1>anna y lin</h1>
<tr>
<td><a title="external link to hacking with the browser workshop on notion" target="_blank" href="https://annaylin.notion.site/June-20th-Hacking-Workshop-7bce3443ba3e4dbba3a08203ce02e4dd?pvs=4">hacking with the browser</a></td>
</tr>
<tr>
<td><a title="external link to private work portfolio" target="_blank" href="login.html">private work</a></td>
</tr>
</tbody>
</table>
<div style="line-height: 16px;">
Expand Down
14 changes: 7 additions & 7 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -146,13 +146,13 @@ window.addEventListener("load", () => {
button.addEventListener("click", switchFilmView);
});

// document.body.addEventListener("mousemove", (e) => {
// const dot = document.createElement("dot");
// dot.style.left = `${e.x}px`;
// dot.style.top = `${e.y}px`;
// dot.innerText = '.';
// document.body.appendChild(dot);
// });
document.body.addEventListener("mousemove", (e) => {
const dot = document.createElement("dot");
dot.style.left = `${e.x}px`;
dot.style.top = `${e.y}px`;
dot.innerText = '.';
document.body.appendChild(dot);
});

document.body.addEventListener("touchmove", (e) => {
if (getComputedStyle(center).display == "none") {
Expand Down

0 comments on commit 3c223c5

Please sign in to comment.