+
95
-

uniapp的nvue中如何创建使用动画?

uniapp的nvue中如何创建使用动画?


网友回复

+
15
-

可以使用css

<template>
	<view class="wrapper">
		<view class="box" :class="{origin: !go, target: go}"></view>
	</view>
</template>
<script>
	export default {
		data() {
			return {
				go: false
			}
		},
		mounte...

点击查看剩余70%

我知道答案,我要回答