JSFiddle - React, Tailwind, and code Playground
by kurotanshi
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<div id="app">
<button @click="noActivated = true">Shack It!</button>
<div class="block" :class="{ shake: noActivated }">Block</div>
</div>
SCSS
#app {
position: relative;
display: block;
padding: 1rem;
font-size: 1rem;
}
button {
font-size: 1rem;
}
.block {
display: block;
width: 120px;
height: 80px;
line-height: 80px;
text-align: center;
font-size: 1.2rem;
margin-top: 1rem;
background-color: #3eaf7c;
color: #fff;
}
.shake {
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
transform: translate3d(0, 0, 0);
backface-visibility: hidden;
perspective: 1000px;
}
@keyframes shake {
10%, 90% {
transform: translate3d(-1px, 0, 0);
}
20%, 80% {
transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
transform: translate3d(-4px, 0, 0);
}
40%, 60% {
transform: translate3d(4px, 0, 0);
}
}
JavaScript
const app = Vue.createApp({
data() {
return {
noActivated: false
}
}
});
app.mount('#app');