A Pen by Aaron Iker on CodePen.
Created
June 26, 2022 02:00
-
-
Save justaguywhocodes/eda2b2d1d8558521bb9e3c614454e655 to your computer and use it in GitHub Desktop.
Trash button animation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<button class="button"> | |
<div class="trash"> | |
<div class="top"> | |
<div class="paper"></div> | |
</div> | |
<div class="box"></div> | |
<div class="check"> | |
<svg viewBox="0 0 8 6"> | |
<polyline points="1 3.4 2.71428571 5 7 1"></polyline> | |
</svg> | |
</div> | |
</div> | |
<span>Delete Item</span> | |
</button> | |
<!-- dribbble - twitter --> | |
<a class="dribbble" href="https://dribbble.com/ai" target="_blank"><img src="https://cdn.dribbble.com/assets/dribbble-ball-mark-2bd45f09c2fb58dbbfb44766d5d1d07c5a12972d602ef8b32204d28fa3dda554.svg" alt=""></a> | |
<a class="twitter" target="_top" href="https://twitter.com/aaroniker_me"><svg xmlns="http://www.w3.org/2000/svg" width="72" height="72" viewBox="0 0 72 72"><path d="M67.812 16.141a26.246 26.246 0 0 1-7.519 2.06 13.134 13.134 0 0 0 5.756-7.244 26.127 26.127 0 0 1-8.313 3.176A13.075 13.075 0 0 0 48.182 10c-7.229 0-13.092 5.861-13.092 13.093 0 1.026.118 2.021.338 2.981-10.885-.548-20.528-5.757-26.987-13.679a13.048 13.048 0 0 0-1.771 6.581c0 4.542 2.312 8.551 5.824 10.898a13.048 13.048 0 0 1-5.93-1.638c-.002.055-.002.11-.002.162 0 6.345 4.513 11.638 10.504 12.84a13.177 13.177 0 0 1-3.449.457c-.846 0-1.667-.078-2.465-.231 1.667 5.2 6.499 8.986 12.23 9.09a26.276 26.276 0 0 1-16.26 5.606A26.21 26.21 0 0 1 4 55.976a37.036 37.036 0 0 0 20.067 5.882c24.083 0 37.251-19.949 37.251-37.249 0-.566-.014-1.134-.039-1.694a26.597 26.597 0 0 0 6.533-6.774z"></path></svg></a> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.querySelectorAll('.button').forEach(button => button.addEventListener('click', e => { | |
if(!button.classList.contains('delete')) { | |
button.classList.add('delete'); | |
setTimeout(() => button.classList.remove('delete'), 3200); | |
} | |
e.preventDefault(); | |
})); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.button { | |
--background: #2B3044; | |
--background-hover: #1E2235; | |
--text: #fff; | |
--shadow: rgba(0, 9, 61, .2); | |
--paper: #5C86FF; | |
--paper-lines: #fff; | |
--trash: #E1E6F9; | |
--trash-lines: #BBC1E1; | |
--check: #fff; | |
--check-background: #5C86FF; | |
position: relative; | |
border: none; | |
outline: none; | |
background: none; | |
padding: 10px 24px; | |
border-radius: 7px; | |
min-width: 142px; | |
-webkit-appearance: none; | |
-webkit-tap-highlight-color: transparent; | |
cursor: pointer; | |
display: flex; | |
color: var(--text); | |
background: var(--btn, var(--background)); | |
box-shadow: 0 var(--shadow-y, 4px) var(--shadow-blur, 8px) var(--shadow); | |
transform: scale(var(--scale, 1)); | |
transition: transform .3s, box-shadow .3s, background .3s; | |
span { | |
display: block; | |
font-size: 14px; | |
line-height: 25px; | |
font-weight: 600; | |
opacity: var(--span-opacity, 1); | |
transform: translateX(var(--span-x, 0)) translateZ(0); | |
transition: transform .4s ease var(--span-delay, .2s), opacity .3s ease var(--span-delay, .2s); | |
} | |
.trash { | |
display: block; | |
position: relative; | |
left: -8px; | |
transform: translate(var(--trash-x, 0), var(--trash-y, 1px)) translateZ(0) scale(var(--trash-scale, .64)); | |
transition: transform .5s; | |
&:before, | |
&:after { | |
content: ''; | |
position: absolute; | |
height: 8px; | |
width: 2px; | |
border-radius: 1px; | |
background: var(--icon, var(--trash)); | |
bottom: 100%; | |
transform-origin: 50% 6px; | |
transform: translate(var(--x, 3px), 2px) scaleY(var(--sy, .7)) rotate(var(--r, 0deg)); | |
transition: transform .4s, background .3s; | |
} | |
&:before { | |
left: 1px; | |
} | |
&:after { | |
right: 1px; | |
--x: -3px; | |
} | |
.top { | |
position: absolute; | |
overflow: hidden; | |
left: -4px; | |
right: -4px; | |
bottom: 100%; | |
height: 40px; | |
z-index: 1; | |
transform: translateY(2px); | |
&:before, | |
&:after { | |
content: ''; | |
position: absolute; | |
border-radius: 1px; | |
background: var(--icon, var(--trash)); | |
width: var(--w, 12px); | |
height: var(--h, 2px); | |
left: var(--l, 8px); | |
bottom: var(--b, 5px); | |
transition: background .3s, transform .4s; | |
} | |
&:after { | |
--w: 28px; | |
--h: 2px; | |
--l: 0; | |
--b: 0; | |
transform: scaleX(var(--trash-line-scale, 1)); | |
} | |
.paper { | |
width: 14px; | |
height: 18px; | |
background: var(--paper); | |
left: 7px; | |
bottom: 0; | |
border-radius: 1px; | |
position: absolute; | |
transform: translateY(-16px); | |
opacity: 0; | |
&:before, | |
&:after { | |
content: ''; | |
width: var(--w, 10px); | |
height: 2px; | |
border-radius: 1px; | |
position: absolute; | |
left: 2px; | |
top: var(--t, 2px); | |
background: var(--paper-lines); | |
transform: scaleY(.7); | |
box-shadow: 0 9px 0 var(--paper-lines); | |
} | |
&:after { | |
--t: 5px; | |
--w: 7px; | |
} | |
} | |
} | |
.box { | |
width: 20px; | |
height: 25px; | |
border: 2px solid var(--icon, var(--trash)); | |
border-radius: 1px 1px 4px 4px; | |
position: relative; | |
overflow: hidden; | |
z-index: 2; | |
transition: border-color .3s; | |
&:before, | |
&:after { | |
content: ''; | |
position: absolute; | |
width: 4px; | |
height: var(--h, 20px); | |
top: 0; | |
left: var(--l, 50%); | |
background: var(--b, var(--trash-lines)); | |
} | |
&:before { | |
border-radius: 2px; | |
margin-left: -2px; | |
transform: translateX(-3px) scale(.6); | |
box-shadow: 10px 0 0 var(--trash-lines); | |
opacity: var(--trash-lines-opacity, 1); | |
transition: transform .4s, opacity .4s; | |
} | |
&:after { | |
--h: 16px; | |
--b: var(--paper); | |
--l: 1px; | |
transform: translate(-.5px, -16px) scaleX(.5); | |
box-shadow: 7px 0 0 var(--paper), 14px 0 0 var(--paper), 21px 0 0 var(--paper); | |
} | |
} | |
.check { | |
padding: 4px 3px; | |
border-radius: 50%; | |
background: var(--check-background); | |
position: absolute; | |
left: 2px; | |
top: 24px; | |
opacity: var(--check-opacity, 0); | |
transform: translateY(var(--check-y, 0)) scale(var(--check-scale, .2)); | |
transition: transform var(--check-duration, .2s) ease var(--check-delay, 0s), opacity var(--check-duration-opacity, .2s) ease var(--check-delay, 0s); | |
svg { | |
width: 8px; | |
height: 6px; | |
display: block; | |
fill: none; | |
stroke-width: 1.5; | |
stroke-dasharray: 9px; | |
stroke-dashoffset: var(--check-offset, 9px); | |
stroke-linecap: round; | |
stroke-linejoin: round; | |
stroke: var(--check); | |
transition: stroke-dashoffset .4s ease var(--checkmark-delay, .4s); | |
} | |
} | |
} | |
&.delete { | |
--span-opacity: 0; | |
--span-x: 16px; | |
--span-delay: 0s; | |
--trash-x: 46px; | |
--trash-y: 2px; | |
--trash-scale: 1; | |
--trash-lines-opacity: 0; | |
--trash-line-scale: 0; | |
--icon: #fff; | |
--check-offset: 0; | |
--check-opacity: 1; | |
--check-scale: 1; | |
--check-y: 16px; | |
--check-delay: 1.7s; | |
--checkmark-delay: 2.1s; | |
--check-duration: .55s; | |
--check-duration-opacity: .3s; | |
.trash { | |
&:before, | |
&:after { | |
--sy: 1; | |
--x: 0; | |
} | |
&:before { | |
--r: 40deg; | |
} | |
&:after { | |
--r: -40deg; | |
} | |
.top { | |
.paper { | |
animation: paper 1.5s linear forwards .5s; | |
} | |
} | |
.box { | |
&:after { | |
animation: cut 1.5s linear forwards .5s; | |
} | |
} | |
} | |
} | |
&.delete, | |
&:hover { | |
--btn: var(--background-hover); | |
--shadow-y: 5px; | |
--shadow-blur: 9px; | |
} | |
&:active { | |
--shadow-y: 2px; | |
--shadow-blur: 5px; | |
--scale: .94; | |
} | |
} | |
@keyframes paper { | |
10%, | |
100% { | |
opacity: 1; | |
} | |
20% { | |
transform: translateY(-16px); | |
} | |
40% { | |
transform: translateY(0); | |
} | |
70%, | |
100% { | |
transform: translateY(24px); | |
} | |
} | |
@keyframes cut { | |
0%, | |
40% { | |
transform: translate(-.5px, -16px) scaleX(.5); | |
} | |
100% { | |
transform: translate(-.5px, 24px) scaleX(.5); | |
} | |
} | |
html { | |
box-sizing: border-box; | |
-webkit-font-smoothing: antialiased; | |
} | |
* { | |
box-sizing: inherit; | |
&:before, | |
&:after { | |
box-sizing: inherit; | |
} | |
} | |
// Center & dribbble | |
body { | |
min-height: 100vh; | |
display: flex; | |
font-family: 'Inter', Arial; | |
justify-content: center; | |
align-items: center; | |
background: #ECEFFC; | |
.dribbble { | |
position: fixed; | |
display: block; | |
right: 20px; | |
bottom: 20px; | |
img { | |
display: block; | |
height: 28px; | |
} | |
} | |
.twitter { | |
position: fixed; | |
display: block; | |
right: 64px; | |
bottom: 14px; | |
svg { | |
width: 32px; | |
height: 32px; | |
fill: #1da1f2; | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href="https://fonts.googleapis.com/css?family=Inter:400,500,600,700&display=swap" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment