Skip to content

Commit 7189b9c

Browse files
committed
feat: card_transition
1 parent 2eab345 commit 7189b9c

7 files changed

+43
-27
lines changed

miniprogram/app.json

+3-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@
240240
"examples/album/pages/album/index",
241241
"examples/album/pages/preview/index",
242242
"examples/half-screen/pages/index/index",
243-
"examples/segmented-half-screen/pages/index/index"
243+
"examples/segmented-half-screen/pages/index/index",
244+
"examples/card_transition/pages/list/list",
245+
"examples/card_transition/pages/detail/detail"
244246
]
245247
},
246248
{

miniprogram/common/common-skyline.wxss

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ page {
2222
}
2323

2424
image {
25-
max-width: 100%;
26-
max-height: 100%
25+
/* max-width: 100%;
26+
max-height: 100% */
2727
}
2828

2929
.link {

miniprogram/page/animation/index.ts

+5-18
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ Page({
4646
open: false,
4747
pages: [
4848
{ url: '/packageSkylineExamples/examples/address-book/pages/index/index', name: '通讯录'},
49-
{ url: '/packageSkylineExamples/examples/half-screen/pages/index/index', name: '半屏'},
50-
{ url: '/packageSkylineExamples/examples/segmented-half-screen/pages/index/index', name: '分段半屏'},
51-
{ key: 'custom-route', url: '/packageSkylineExamples/examples/album/pages/album/index', name: '图片预览'},
52-
{ url: '/packageSkylineExamples/examples/tab-indicator/pages/index/index', name: 'Tab 组件'}
49+
{ key: 'custom-route', url: '/packageSkylineExamples/examples/album/pages/album/index', name: '相册'},
50+
{ url: '/packageSkylineExamples/examples/card_transition/pages/list/list', name: '卡片转场'},
51+
{ url: '/packageSkylineExamples/examples/half-screen/pages/index/index', name: '半屏弹窗'},
52+
{ url: '/packageSkylineExamples/examples/segmented-half-screen/pages/index/index', name: '分段式半屏'},
53+
{ url: '/packageSkylineExamples/examples/tab-indicator/pages/index/index', name: 'Tab 指示条'}
5354
]
5455
}, {
5556
id: 'XRFrame',
@@ -91,20 +92,6 @@ Page({
9192
this.setData({theme})
9293
})
9394
}
94-
wx.cloud.callFunction({
95-
name: 'openapi',
96-
data: {
97-
action: 'getqrcode',
98-
page: 'packageSkylineExamples/examples/segmented-half-screen/pages/index/index'
99-
},
100-
success: res => {
101-
console.log(res.result)
102-
console.log('getqrcode成功', 'data:image/png;base64,' + wx.arrayBufferToBase64(res.result.buffer.data))
103-
},
104-
fail: err => {
105-
console.log('getqrcode error', err)
106-
}
107-
})
10895
},
10996

11097
kindToggle(e) {
File renamed without changes.

project.config.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
"disableUseStrict": false,
3535
"showES6CompileOption": false,
3636
"useCompilerPlugins": [
37-
"typescript",
38-
"less"
37+
"typescript"
3938
],
4039
"ignoreDevUnusedFiles": false,
4140
"ignoreUploadUnusedFiles": false,

project.private.config.json

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,37 @@
11
{
2-
"libVersion": "2.29.0",
2+
"libVersion": "2.30.1",
33
"description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档:https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html",
44
"setting": {
55
"useIsolateContext": true,
6-
"urlCheck": false
6+
"urlCheck": false,
7+
"compileHotReLoad": false,
8+
"lazyloadPlaceholderEnable": false
79
},
8-
"projectname": "小程序示例"
10+
"projectname": "小程序示例",
11+
"condition": {
12+
"miniprogram": {
13+
"list": [
14+
{
15+
"name": "page/API/pages/storage/storage",
16+
"pathName": "page/API/pages/storage/storage",
17+
"query": "",
18+
"scene": null
19+
},
20+
{
21+
"name": "card_transition",
22+
"pathName": "packageSkylineExamples/examples/card_transition/pages/list/list",
23+
"query": "",
24+
"launchMode": "default",
25+
"scene": null
26+
},
27+
{
28+
"name": "card_transition/detail",
29+
"pathName": "packageSkylineExamples/examples/card_transition/pages/detail/detail",
30+
"query": "index=1&url=https%253A%252F%252Fpicsum.photos%252F300%252F400%253Frandom%253D1&content=%E6%8E%A8%E8%8D%90%20Skyline%EF%BC%8C%E4%BD%BF%E7%94%A8%E5%90%8E%E4%BD%93%E9%AA%8C%E6%B5%81%E7%95%85%E5%BE%88%E5%A4%9A~&ratio=0.75",
31+
"launchMode": "default",
32+
"scene": null
33+
}
34+
]
35+
}
36+
}
937
}

0 commit comments

Comments
 (0)