forked from vuejs/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDisabledButton.vue
53 lines (45 loc) · 879 Bytes
/
DisabledButton.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<script setup>
import { ref } from 'vue'
const notActivated = ref(false)
function warnNotActivated() {
notActivated.value = true
setTimeout(() => {
notActivated.value = false
}, 1500)
}
</script>
<template>
<div class="demo">
<div :class="{ shake: notActivated }">
<button @click="warnNotActivated">Click me</button>
<span v-if="notActivated" style="margin-left: 20px"
>This feature is disabled!</span
>
</div>
</div>
</template>
<style>
.shake {
animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
transform: translate3d(0, 0, 0);
}
@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);
}
}
</style>