Skip to content

Commit

Permalink
Change icon for a second after copying
Browse files Browse the repository at this point in the history
  • Loading branch information
kytta committed Mar 20, 2023
1 parent f9dbc5b commit 69422e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/shareon.css
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71'/%3E%3C/g%3E%3C/svg%3E");
}

.shareon > .copy-url.done:before {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.shareon > .facebook {
background-color: #1877f2;
}
Expand Down
4 changes: 4 additions & 0 deletions src/shareon.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,10 @@ const init = () => {
container.dataset.url ||
window.location.href;
navigator.clipboard.writeText(url);
child.classList.add("done");
setTimeout(() => {
child.classList.remove("done");
}, 1000);
});
}

Expand Down

0 comments on commit 69422e8

Please sign in to comment.