个人案例
- 社圈天地
社圈天地
社圈天地扫码体验
- 该帐号已注销
宝妈社圈
宝妈社圈扫码体验
我的理解是 进去列表不能立即弹出授权 需要给用户提示 让用户主动触发这个弹窗
关于小程序的帐号登录功能调整,可以弹窗提示授权吗?公告小程序内用户帐号登录规范调整和优化建议[图片] 进入小程序可以弹窗提示登录吗?不强制登录,可以点击取消。列如有一个订单列表,进入页面的时候可以弹窗提示登录吗?
2019-08-14解决就好 [图片] 我最开始写小程序的时候,新建页面时 分享函数 官方给你写好,我自己又写了个分享, 官方那个空 的函数覆盖了我的 导致我分享不好使 ,这个小问题 找了好久。。。。
wx.navigateTo()跳转路径有限制吗?- 当前 Bug 的表现(可附上截图) - 预期表现 - 复现路径 - 提供一个最简复现 Demo 当路径是"user"时就无法跳转[图片]
2019-07-29大佬 在不在@
购物车 小球运动轨迹问题 代码片段如下https://developers.weixin.qq.com/s/WoqJAYma7W9e 进入界面上来 直接点击加号 小球运动估计 没有完全运动完 , 右边的scroll-view 只要一滚动 就没有问题 手机调试特别明显
2019-07-22[图片] 进来直接点加号 小球轨迹 不完全显示 只要页面滑动一下 就可以完全显示 。。。。大佬求救
购物车小球效果 下面有链接分享片段 https://developers.weixin.qq.com/s/WoqJAYma7W9e 问题是 进入页面点击+号 小球的运动轨迹不完全显示, 只有右边滑动页面 小球轨迹 就完全没问题 ,求大佬帮忙斧正下
2019-07-19大佬有详细的 代码么
部分朋友想要的飞入购物车效果//index.js Page({ data: { animationData: {}, animating: '', }, onLoad: function () { }, /* * t: current time(当前时间); * b: beginning value(初始值); * c: change in value(变化量); * d: duration(持续时间)。 */ bounceEaseOut: function (t, b, c, d) {//弹性线 if ((t /= d) < (1 / 2.75)) { return c * (7.5625 * t * t) + b; } else if (t < (2 / 2.75)) { return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b; } else if (t < (2.5 / 2.75)) { return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b; } else { return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b; } }, easeOutBack: function (t, b, c, d, s) {//抛物线 if (s == undefined) s = 1.70158; return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b; }, startAm: function (that, e) { var atime = 0.6//动画持续时间 var etime = 100//动画结束时间 that.setData({ animating: e.target.dataset.goodsid }) setTimeout(() => { that.setData({ animating: '' }) }, etime) var animation = wx.createAnimation({ duration: 100, timingFunction: 'ease', }) that.animation = animation //变化量坐标 var offx = 320 / 2 - e.touches[0].clientX//购物车所在位置x - 加入购物车按钮的位置x var offy = 405- 50 - e.touches[0].clientY//购物车所在位置Y - 加入购物车按钮的位置Y //console.log("变化量坐标", offx, offy, that.bounceEaseOut(1 / 10, 0, offy, 1)) //每1/10秒变化量坐标: //console.log("每1/10秒变化量坐标", offx / 10, that.bounceEaseOut(1 / 10, 0, offy, 1)) animation .translate(1 * offx / 20, that.bounceEaseOut(1 / 20, 0, offy, atime)).step() .translate(2 * offx / 20, that.bounceEaseOut(2 / 20, 0, offy, atime)).step() .translate(3 * offx / 20, that.bounceEaseOut(3 / 20, 0, offy, atime)).step() .translate(4 * offx / 20, that.bounceEaseOut(4 / 20, 0, offy, atime)).step() .translate(5 * offx / 20, that.bounceEaseOut(5 / 20, 0, offy, atime)).step() .translate(6 * offx / 20, that.bounceEaseOut(6 / 20, 0, offy, atime)).step() .translate(7 * offx / 20, that.bounceEaseOut(7 / 20, 0, offy, atime)).step() .translate(8 * offx / 20, that.bounceEaseOut(8 / 20, 0, offy, atime)).step() .translate(9 * offx / 20, that.bounceEaseOut(9 / 20, 0, offy, atime)).step() .translate(10 * offx / 20, that.bounceEaseOut(10 / 20, 0, offy, atime)).step() .translate(11 * offx / 20, that.bounceEaseOut(11 / 20, 0, offy, atime)).step() .translate(12 * offx / 20, that.bounceEaseOut(12 / 20, 0, offy, atime)).step() .translate(13 * offx / 20, that.bounceEaseOut(13 / 20, 0, offy, atime)).step() .translate(14 * offx / 20, that.bounceEaseOut(14 / 20, 0, offy, atime)).step() .translate(15 * offx / 20, that.bounceEaseOut(15 / 20, 0, offy, atime)).step() .translate(16 * offx / 20, that.bounceEaseOut(16 / 20, 0, offy, atime)).step() .translate(17 * offx / 20, that.bounceEaseOut(17 / 20, 0, offy, atime)).step() .translate(18 * offx / 20, that.bounceEaseOut(18 / 20, 0, offy, atime)).step() .translate(19 * offx / 20, that.bounceEaseOut(19 / 20, 0, offy, atime)).step() .translate(20 * offx / 20, that.bounceEaseOut(20 / 20, 0, offy, atime)).step() .opacity(0).step().translate(0, 0).step().opacity(1).step() that.setData({ animationData: animation.export() }) setTimeout(function () { animation.translate(0, 0).step() that.setData({ animationData: animation.export() }) }.bind(this), etime) }, cartPlus: function (e) { var that = this //加入购物车动画 that.startAm(that,e) }, }) <view data-goodsId='' bindtap="cartPlus" animation='{{animating==im.goodsIdStr?animationData:""}}'>加入购物车</view >
2019-07-12亲 这个效果实现了么
小程序有克隆clone的功能吗,比如:加商品购物车,飞入购物车内的效果您好,小程序有克隆clone的功能吗,比如:加商品购物车,飞入购物车内的效果。 有克隆功能后,用animation就可以实现动画飞入
2019-07-12米八也出现了 这个问题 是没有触发 bindinput <input type="number" class='ipt' maxlength="6" focus="{{isFocus}}"bindinput="focus"></input> ipt 给个宽高 光标隐藏掉就可以了
密码输入框 ios部分机型出现问题 有大佬帮忙看一下吗预期表现: [图片] 开发工具上和部分真机上可以实现,没有问题; 但是在iPhone6 / iPhone6s / iPhone7Plus 真机上出现如下问题: [图片] 有没有大佬帮忙看一下是什么问题_(:з」∠)_
2019-07-11[图片] 这个问题
驳回原因:小程序可用性和完整性不符合规则[图片] [图片] 我们查看: [图片] 项目急需上线,请求大佬们看下到底是什么问题
2019-07-10???? 什么意思
request的域名问题[图片]不晓得这个要怎么操作。就是request里的合法域名(自动给出的)不能使用
2019-07-10缓存问题?不应该啊
webview https 被识别成http[图片] 访问的域名 [图片] 报的错 [图片]
2019-07-10