mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] optimize transition behavior (#500)
This commit is contained in:
parent
63bddbddfb
commit
be87ff828c
96
dist/behaviors/transition.js
vendored
96
dist/behaviors/transition.js
vendored
@ -1,52 +1,54 @@
|
|||||||
export default Behavior({
|
export default function(showDefaultValue) {
|
||||||
properties: {
|
return Behavior({
|
||||||
customStyle: String,
|
properties: {
|
||||||
show: {
|
customStyle: String,
|
||||||
value: true,
|
show: {
|
||||||
type: Boolean,
|
value: showDefaultValue,
|
||||||
observer(value) {
|
type: Boolean,
|
||||||
if (value) {
|
observer(value) {
|
||||||
this.show();
|
if (value) {
|
||||||
} else {
|
this.show();
|
||||||
|
} else {
|
||||||
|
this.setData({
|
||||||
|
type: 'leave'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
duration: {
|
||||||
|
type: Number,
|
||||||
|
value: 300
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
type: '',
|
||||||
|
inited: false,
|
||||||
|
display: false
|
||||||
|
},
|
||||||
|
|
||||||
|
attached() {
|
||||||
|
if (this.data.show) {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
show() {
|
||||||
|
this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
type: 'enter'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
onAnimationEnd() {
|
||||||
|
if (!this.data.show) {
|
||||||
this.setData({
|
this.setData({
|
||||||
type: 'leave'
|
display: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
duration: {
|
|
||||||
type: Number,
|
|
||||||
value: 300
|
|
||||||
}
|
}
|
||||||
},
|
});
|
||||||
|
}
|
||||||
data: {
|
|
||||||
type: '',
|
|
||||||
inited: false,
|
|
||||||
display: false
|
|
||||||
},
|
|
||||||
|
|
||||||
attached() {
|
|
||||||
if (this.data.show) {
|
|
||||||
this.show();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
show() {
|
|
||||||
this.setData({
|
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
type: 'enter'
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
onAnimationEnd() {
|
|
||||||
if (!this.data.show) {
|
|
||||||
this.setData({
|
|
||||||
display: false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
20
dist/popup/index.js
vendored
20
dist/popup/index.js
vendored
@ -5,28 +5,12 @@ Component({
|
|||||||
addGlobalClass: true
|
addGlobalClass: true
|
||||||
},
|
},
|
||||||
|
|
||||||
externalClasses: [
|
externalClasses: ['custom-class'],
|
||||||
'custom-class',
|
|
||||||
'overlay-class'
|
|
||||||
],
|
|
||||||
|
|
||||||
behaviors: [transitionBehaviors],
|
behaviors: [transitionBehaviors(false)],
|
||||||
|
|
||||||
properties: {
|
properties: {
|
||||||
overlayStyle: String,
|
overlayStyle: String,
|
||||||
show: {
|
|
||||||
value: false,
|
|
||||||
type: Boolean,
|
|
||||||
observer(value) {
|
|
||||||
if (value) {
|
|
||||||
this.show();
|
|
||||||
} else {
|
|
||||||
this.setData({
|
|
||||||
type: 'leave'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
overlay: {
|
overlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
|
2
dist/transition/index.js
vendored
2
dist/transition/index.js
vendored
@ -7,7 +7,7 @@ Component({
|
|||||||
|
|
||||||
externalClasses: ['custom-class'],
|
externalClasses: ['custom-class'],
|
||||||
|
|
||||||
behaviors: [transitionBehaviors],
|
behaviors: [transitionBehaviors(true)],
|
||||||
|
|
||||||
properties: {
|
properties: {
|
||||||
name: {
|
name: {
|
||||||
|
@ -1,52 +1,54 @@
|
|||||||
export default Behavior({
|
export default function(showDefaultValue) {
|
||||||
properties: {
|
return Behavior({
|
||||||
customStyle: String,
|
properties: {
|
||||||
show: {
|
customStyle: String,
|
||||||
value: true,
|
show: {
|
||||||
type: Boolean,
|
value: showDefaultValue,
|
||||||
observer(value) {
|
type: Boolean,
|
||||||
if (value) {
|
observer(value) {
|
||||||
this.show();
|
if (value) {
|
||||||
} else {
|
this.show();
|
||||||
|
} else {
|
||||||
|
this.setData({
|
||||||
|
type: 'leave'
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
duration: {
|
||||||
|
type: Number,
|
||||||
|
value: 300
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
data: {
|
||||||
|
type: '',
|
||||||
|
inited: false,
|
||||||
|
display: false
|
||||||
|
},
|
||||||
|
|
||||||
|
attached() {
|
||||||
|
if (this.data.show) {
|
||||||
|
this.show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
methods: {
|
||||||
|
show() {
|
||||||
|
this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
type: 'enter'
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
onAnimationEnd() {
|
||||||
|
if (!this.data.show) {
|
||||||
this.setData({
|
this.setData({
|
||||||
type: 'leave'
|
display: false
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
|
||||||
duration: {
|
|
||||||
type: Number,
|
|
||||||
value: 300
|
|
||||||
}
|
}
|
||||||
},
|
});
|
||||||
|
}
|
||||||
data: {
|
|
||||||
type: '',
|
|
||||||
inited: false,
|
|
||||||
display: false
|
|
||||||
},
|
|
||||||
|
|
||||||
attached() {
|
|
||||||
if (this.data.show) {
|
|
||||||
this.show();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
show() {
|
|
||||||
this.setData({
|
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
type: 'enter'
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
onAnimationEnd() {
|
|
||||||
if (!this.data.show) {
|
|
||||||
this.setData({
|
|
||||||
display: false
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
@ -5,28 +5,12 @@ Component({
|
|||||||
addGlobalClass: true
|
addGlobalClass: true
|
||||||
},
|
},
|
||||||
|
|
||||||
externalClasses: [
|
externalClasses: ['custom-class'],
|
||||||
'custom-class',
|
|
||||||
'overlay-class'
|
|
||||||
],
|
|
||||||
|
|
||||||
behaviors: [transitionBehaviors],
|
behaviors: [transitionBehaviors(false)],
|
||||||
|
|
||||||
properties: {
|
properties: {
|
||||||
overlayStyle: String,
|
overlayStyle: String,
|
||||||
show: {
|
|
||||||
value: false,
|
|
||||||
type: Boolean,
|
|
||||||
observer(value) {
|
|
||||||
if (value) {
|
|
||||||
this.show();
|
|
||||||
} else {
|
|
||||||
this.setData({
|
|
||||||
type: 'leave'
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
overlay: {
|
overlay: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true
|
value: true
|
||||||
|
@ -7,7 +7,7 @@ Component({
|
|||||||
|
|
||||||
externalClasses: ['custom-class'],
|
externalClasses: ['custom-class'],
|
||||||
|
|
||||||
behaviors: [transitionBehaviors],
|
behaviors: [transitionBehaviors(true)],
|
||||||
|
|
||||||
properties: {
|
properties: {
|
||||||
name: {
|
name: {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user