util.js 386 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1 2
export const ANI_DURATION = 300
const ANI_SHOW = 'pop-in'
fxy060608's avatar
fxy060608 已提交
3
export const ANI_CLOSE = 'pop-out'
fxy060608's avatar
fxy060608 已提交
4

fxy060608's avatar
fxy060608 已提交
5
export function showWebview (webview, animationType, animationDuration, callback) {
fxy060608's avatar
fxy060608 已提交
6 7 8
  setTimeout(() => {
    webview.show(
      animationType || ANI_SHOW,
fxy060608's avatar
fxy060608 已提交
9
      parseInt(animationDuration) || ANI_DURATION,
fxy060608's avatar
fxy060608 已提交
10
      () => {
fxy060608's avatar
fxy060608 已提交
11
        callback && callback()
fxy060608's avatar
fxy060608 已提交
12 13 14
      }
    )
  }, 50)
fxy060608's avatar
fxy060608 已提交
15
}