Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-component
提交
a5fe7b88
U
uni-component
项目概览
DCloud
/
uni-component
通知
250
Star
6
Fork
3
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
3
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-component
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
3
Issue
3
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
a5fe7b88
编写于
1月 29, 2023
作者:
DCloud-yyl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
animation-view添加本地和网络动画切换示例
上级
39c66afa
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
4 deletion
+13
-4
manifest.json
manifest.json
+1
-1
pages/index/index.nvue
pages/index/index.nvue
+12
-3
未找到文件。
manifest.json
浏览文件 @
a5fe7b88
{
{
"name"
:
"uni-component"
,
"name"
:
"uni-component"
,
"appid"
:
"__UNI__0094991"
,
"appid"
:
"__UNI__0094991"
,
"description"
:
""
,
"description"
:
"
uts组件示例
"
,
"versionName"
:
"1.0.0"
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
"transformPx"
:
false
,
...
...
pages/index/index.nvue
浏览文件 @
a5fe7b88
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
:hidden="hidden" @bindended="lottieEnd">
:hidden="hidden" @bindended="lottieEnd">
</animation-view>
</animation-view>
<button @click="playLottie" type="primary">{{status}}lottie动画</button>
<button @click="playLottie" type="primary">{{status}}lottie动画</button>
<button @click="changeLottie" type="primary">切换{{location}}动画</button>
</div>
</div>
</template>
</template>
...
@@ -14,9 +15,10 @@
...
@@ -14,9 +15,10 @@
path: '/uni_modules/uni-animation-view/static/lottie.json',
path: '/uni_modules/uni-animation-view/static/lottie.json',
loop: false,
loop: false,
autoplay: false,
autoplay: false,
action: '
play
',
action: '
stop
',
hidden: false,
hidden: false,
status: '暂停'
status: '播放',
location: '网络'
}
}
},
},
methods: {
methods: {
...
@@ -24,6 +26,13 @@
...
@@ -24,6 +26,13 @@
this.action = ('play' !== this.action) ? 'play' : 'pause';
this.action = ('play' !== this.action) ? 'play' : 'pause';
this.status = ('pause' === this.action) ? '播放' : '暂停';
this.status = ('pause' === this.action) ? '播放' : '暂停';
},
},
changeLottie() {
this.action = 'stop';
this.status = '播放';
this.path = ('网络' === this.location) ? 'https://native-res.dcloud.net.cn/uni-app/static/lottie.json' : '/uni_modules/uni-animation-view/static/lottie.json';
this.location = ('网络' === this.location) ? '本地' : '网络';
console.log('path='+this.path);
},
lottieEnd() {
lottieEnd() {
this.status = '播放';
this.status = '播放';
this.action = 'stop';
this.action = 'stop';
...
@@ -37,7 +46,7 @@
...
@@ -37,7 +46,7 @@
.animation {
.animation {
width: 750rpx;
width: 750rpx;
height: 300rpx;
height: 300rpx;
background-color: #
FF0000
;
background-color: #
CCCCCC
;
margin-bottom: 20px;
margin-bottom: 20px;
}
}
</style>
</style>
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录