- 微信h5 使用js跳转视频号链接,视频号地址打开后会白屏无内容显示?
如题
04-02 - button type="agreePrivacyAuthorization" 真机事件无法触发?
<button class="wxagree-btn wxagree-btn-right flex-center lt-bold" open-type="agreePrivacyAuthorization" @agreeprivacyauthorization="handleAgreePrivacyAuthorization"> 同意 </button> 这是同意授权隐私协议的button 点击后 agreeprivacyauthorization事件在模拟器上可以正常触发 但是在手机上不触发,请问这是什么原因 我的手机微信版本是iphone 8.0.41
2023-08-29 - 小程序 image标签 支持长按识别的码中的互通群码如何生成?
[图片] 这个 既有微信用户也有企业微信用户的群 如何创建 通过企业微信后台吗?
2023-06-06 - iphone手机播放视频 视频播放完成时会重新播放
<player-component controls showCenterPlayBtn="true" show-fullscreen-btn="true" :poster="video.poster" :vid="video.vid" :playerid="video.vid" :loop="false" id="txv-Video" @play="play" @pause="pause" @ended="logEndVideo" @timeupdate="videoTimeupdate" @fullscreenchange="fullscreenchange" /> iphone(可在多款iphone上重现)手机播放视频 视频播放完成时 会触发暂停事件 并且视频会重复播放一遍 且视频进度条不动
2023-01-06 - 报警提醒 错误样例: wx.getUserProfile is not a function?
[图片] 小程序上线后 收到小程序的报警提醒 我已经将最低基础库版本设置 [图片] 我看文档上说 wx.getUserProfile 基础库 2.10.4 开始支持为啥小程序会有报警提醒呢
2021-06-25 - 到底什么情况下 微信内分享网页会在url自动加上from=singlemessage参数
为什么有的网页分享会带 而某些网页不会带 有什么规律么
2020-12-14 - 使用 rotatey rotatex动画时 苹果手机一半显示一半不显示
- 当前 Bug 的表现(可附上截图) 使用css和wx.createAnimation 设置旋转动画在苹果手机上会出现一半显示一半不显示的情况 旋转中 [图片] 旋转完成后正常 [图片] - 预期表现 - 复现路径 - 提供一个最简复现 Demo .enterAndOrder { width: 265rpx; animation: myfirst 3s linear 0s infinite normal; /* Firefox: */ -moz-animation: myfirst 3s linear 0s infinite normal; /* Safari 和 Chrome: */ -webkit-animation: myfirst 3s linear 0s infinite normal; /* Opera: */ -o-animation: myfirst 3s linear 0s infinite normal; } @keyframes myfirst { 0% { transform:rotatey(-90deg); } 25% { transform:rotatey(0deg); } 30% { transform:rotatey(20deg); } 35% { transform:rotatey(0deg); } 95% { opacity: 1; } 100% { opacity: 0; } }
2018-09-02