perf(transition): use wxs (#3895)

This commit is contained in:
rex 2020-12-22 20:52:31 +08:00 committed by GitHub
parent 2d94ddf5e3
commit 84678ee06c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 20 additions and 1 deletions

View File

@ -1,7 +1,9 @@
<wxs src="./index.wxs" module="computed" />
<view
wx:if="{{ inited }}"
class="van-transition custom-class {{ classes }}"
style="-webkit-transition-duration:{{ currentDuration }}ms; transition-duration:{{ currentDuration }}ms; {{ display ? '' : 'display: none;' }} {{ customStyle }}"
style="{{ computed.rootStyle({ currentDuration, display, customStyle }) }}"
bind:transitionend="onTransitionEnd"
>
<slot />

View File

@ -0,0 +1,17 @@
/* eslint-disable */
var style = require('../wxs/style.wxs');
function rootStyle(data) {
return style([
{
'-webkit-transition-duration': data.currentDuration + 'ms',
'transition-duration': data.currentDuration + 'ms',
},
data.display ? null : 'display: none',
data.customStyle,
]);
}
module.exports = {
rootStyle: rootStyle,
};