- 动画为什么可以在超出view 的范围显示?
[图片] 我想要的效果是,文字从右向左滚动,超出左边部分不显示,该怎么做呢? 代码片段:https://developers.weixin.qq.com/s/brnOVTmj7aj6 view class="aa"> view class="bb"> view class="notice" style="--marqueeTime--:10s;"> view class="nn">{{event}} .notice{ animation-name: around; animation-duration: var(--marqueeTime--); /*过渡时间 从wxml传过来*/ animation-iteration-count: infinite; /*重复*/ animation-timing-function:linear; /*速度*/ overflow:hidden; white-space:nowrap; text-overflow: ellipsis; } @keyframes around { 0% { margin-left: 100%; } 100% { margin-left: -600%; } } .bb{ width: 92%; /* margin-left: 4%; */ height: 4.5vh; } .aa{ position: fixed; top: 0; width: 100%; display: flex; justify-content: center; } /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { let that=this; var text = '请确认已开启了网络流量,网络较差时会导致定位不准确,影响您的行程体验。超过两小时后,如果您没有继续驾乘,系统会主动结束您的行程订单,您的积分会按照实际里程计算。驾乘时途径山洞或隧道,会影响您的GPS定位信息,导致定位不准确。为了您的行车安全,驾乘时请不要盯着手机,系统会自动为您记录行程。'; that.setData({ event:text , }) },
2020-08-26 - wx.openDocument 打开pdf提示:不支持该类型文件或已损坏。doc文件可以打开
https://developers.weixin.qq.com/s/ZhmyWqmF76jx 上面链接为:代码片段。 onLoad: function () { var that = this; // doc可以打开,pdf打不开,提示:无法打开“测试.pdf”!因为不支持该类型文件或已损坏。 // let fileName = "测试.doc"; // let url = "https://infinity-dev.sciicloud.com/dev-infinity/dd797d70be2c447ba5942e0bbfb6565e/material/2e22b3c069b64a659a9bcbf9635dfb9f.doc"; let fileName = "测试.pdf"; let url = "https://infinity-dev.sciicloud.com/dev-infinity/dd797d70be2c447ba5942e0bbfb6565e/material/70a708146de14cd886c7bb7352fd4e60.pdf"; var index1=url.lastIndexOf("."); var index2=url.length; var suffix=url.substring(index1,index2).toLowerCase(); var type=url.substring(index1+1,index2).toLowerCase(); var subUrl=url.substring(0,index1); // debugger wx.downloadFile({ url: url, filePath: wx.env.USER_DATA_PATH + "/" + fileName, success (res) { wx.openDocument({ filePath: res.filePath, fileType: type, showMenu: true, success (e) { console.log("打开文档成功 =>", e); wx.hideLoading(); }, fail (e) { wx.hideLoading(); wx.showToast({ title: "下载文档失败!", icon: "none" }); } }); }, fail (e) { wx.hideLoading(); wx.showToast({ title: "下载文档失败!", icon: "none" }); } }); }, 模拟器和手机度不开。但是打印了“打开文档成功” [图片]
2020-08-07 - wx.createInnerAudioContext 播放mp3,安卓、模拟器可以播放,ios没反应
const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.src = 'http://tts.baidu.com/text2audio?cuid=baiduid&lan=zh&ctp=1&pdt=311&tex=微信收款0.01元'; innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) })
2020-08-05 - createInnerAudioContext()这api在模拟器中可以播放语音,但是真机没有反应?
const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.src = 'http://tts.baidu.com/text2audio?cuid=baiduid&lan=zh&ctp=1&pdt=311&tex=微信收款0.01元'; innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) }) 这段代码在模拟器中可以播放语音,但是真机和预览中,没有反应,也没有报错,为什么呢?(安卓可以,ios没反应) z注意:http://tts.baidu.com/text2audio?cuid=baiduid&lan=zh&ctp=1&pdt=311&tex=微信收款0.01元 这是一个mp3语音
2020-08-05 - 小程序退出后,后台持续定位功能会在微信右边有个小图标,用户把小图标❌ 掉,可以监听到吗?
[图片]
2020-08-03 - wx.openDocument报OfficelmportErrorDomain错误91,怎么解决呢?
微信开发者工具上下载文件并预览时,打开的文件是空白的,用手机预览显示"OfficelmportErrorDomain错误912"。 [图片] 以上是我的代码 [图片] .docx文件下载下来是.html结尾。 微信开发者工具打开是空白页面,手机打开结果是: [图片] 如果"fileType:docx"不写,会报错"openDocument:fail filetype not supported". 分享的代码片段:https://developers.weixin.qq.com/s/SGWHPNmO7Whp 求大佬们帮我找找问题!!!
2020-06-02 - bootom组件设置圆角有矩形边框
bottom按钮设置圆角后,有灰色矩形边框,加入border:none样式没用,点击时候灰色矩形边框还是会出现。哪个大佬知道呀?
2019-08-05