Giter Site home page Giter Site logo

wetoast's People

Contributors

kiinlam avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

wetoast's Issues

穿透功能

在点击按钮提示时需要等此次提示结束后才能再次点击,希望增加穿透属性在提示的时候页面依然能操作来应该不同场景

demo运行不起来

demo运行不起来,作者不维护了?
this.wetoast.toast is not a function Page pages/index/index catch error in Page.onTitleToast function
TypeError: this.wetoast.toast is not a function

每隔30ms定时去调page.setData()影响小程序性能问题

wetoast.js 里面我看到有个方法每隔30ms会掉用page.setData(),小程序在调试时已经警告了,会影响性能。请问有没有考虑这点,有没有更好的方法?

 //显示
 WeToast.prototype.show = function (data) {
   let page = this.__page

   clearTimeout(this.__timeout)

   //display需要先设置为block之后,才能执行动画
   page.setData({
     '__wetoast__.reveal': true
   })

   setTimeout(() => {
     let animation = wx.createAnimation()
     animation.opacity(1).step()
     data.animationData = animation.export()
     data.reveal = true
     page.setData({
       __wetoast__: data
     })
   }, 30)
 ...
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.