社区里发现有同样的问题,但没有回答https://developers.weixin.qq.com/community/develop/doc/0006a477fd4c98f4bc2abbbd057800?_at=1565397315426
小程序输入框聚焦时光标位置不对[图片][图片]
2020-09-09[图片]
打包上传时图片没有被打包?[图片]
2020-08-11建议加精
有些开发者就是太懒了,还蠢遇到问题也不会先搜索查找一下 提问的时候文字都舍不得多输几个,常常问题描述不清楚,代码还舍不得贴 可气的是有些人贴代码是截图,想帮他重现问题还得照着图片敲一遍代码 总喜欢问人要源码,提供的思路明明能解决问题了,他们也懒得去想 要不你们把项目外包给我做吧!?我快要失业了。
2018-09-06解决了,是css层级不够高。 开发者工具看不了伪元素真的是烦
小程序 button组件无法去除边框如题 button::after{ border: 0; } 已修改加了的border为0,依旧存在边框
2018-08-24锤子这个图片旋转了角度没有复位
关于animation动画不执行问题我的需求是做一个砸金蛋功能,点击金蛋弹出modal ,这个modal是一个砸金蛋的动画。第一次执行这个点击事件触发这个事件没有问题,但是当我关闭这个modal再次打开 这个动画效果不触发了,求解答在这先谢过了,下面附上代码(点击事件触发下面弹框有定义了动画animationData,调用基础库是2.1.1) <!--砸金蛋modal --> <view class="modal-mask" bindtap="hideModal" catchtouchmove="preventTouchMove" wx:if="{{showModal}}"></view> <view class="modal-dialog" wx:if="{{showModal}}"> <view class="modal-background"> <view class="modal-out" style=""> <view bindtap="remove">关闭金蛋模态框</view> <image bindtap="eggclick" src="../../static/images/egg.png" style="height:325rpx;width:301rpx;"></image> <view style="position:absolute;right:0rpx;top:-180rpx"> <image class="modal-chui" animation="{{animationData}}" src="../../static/images/chuizi.png" ></image> </view> </view> </view> </view> clickeggs: function () { this.setData({ showModal: true }); let animation1 = wx.createAnimation({ duration: 1000, transformOrigin: "right bottom", timingFunction: 'ease' }) setTimeout(function () { animation1.rotate(-25).step() animation1.rotate(15).step() animation1.rotate(-25).step() animation1.rotate(15).step() animation1.rotate(-25).step() animation1.rotate(15).step() this.setData({ animationData: animation1.export(), }) }.bind(this), 200); },
2018-07-18