动画技术
Vue提供了<Transition>
和<TransitionGroup>
组件来处理进入/离开和列表过渡。然而,在Web上,甚至是在Vue应用中,还有很多其他使用动画的方法。在这里,我们将讨论一些额外的技术。
基于类的动画
对于不进入/离开DOM的元素,我们可以通过动态添加CSS类来触发动画
js
const disabled = ref(false)
function warnDisabled() {
disabled.value = true
setTimeout(() => {
disabled.value = false
}, 1500)
}
template
<div :class="{ shake: disabled }">
<button @click="warnDisabled">Click me</button>
<span v-if="disabled">This feature is disabled!</span>
</div>
css
.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);
}
}
状态驱动动画
某些过渡效果可以通过插值值应用,例如,通过在交互发生时将样式绑定到元素上来实现。以下是一个例子
js
const x = ref(0)
function onMousemove(e) {
x.value = e.clientX
}
template
<div
@mousemove="onMousemove"
:style="{ backgroundColor: `hsl(${x}, 80%, 50%)` }"
class="movearea"
>
<p>Move your mouse across this div...</p>
<p>x: {{ x }}</p>
</div>
css
.movearea {
transition: 0.3s background-color ease;
}
将鼠标移过这个div...
x: 0
除了颜色,您还可以使用样式绑定来动画化transform、宽度或高度。您甚至可以使用弹簧物理动画化SVG路径——毕竟,它们都是属性数据绑定
拖动我
使用侦听器进行动画
通过一些创意,我们可以使用侦听器根据某些数值状态来动画化任何东西。例如,我们可以动画化数字本身
js
import { ref, reactive, watch } from 'vue'
import gsap from 'gsap'
const number = ref(0)
const tweened = reactive({
number: 0
})
watch(number, (n) => {
gsap.to(tweened, { duration: 0.5, number: Number(n) || 0 })
})
template
Type a number: <input v-model.number="number" />
<p>{{ tweened.number.toFixed(0) }}</p>
输入数字
0