Results 2 comments of xxcf

```css div.parent{ display:grid; place-items: center; } ```

``` WeToast.prototype.hide = function() { let page = this.__page clearTimeout(this.__timeout) if (!page.data.__wetoast__.reveal) { return } let animation = wx.createAnimation() animation.opacity(0).step() page.setData({ '__wetoast__.animationData': animation.export(), '__wetoast__.reveal': false //这里加一行 }) setTimeout(() => {...