- 小程序上传到腾讯云
小程序上传到腾讯云? 我开发了一个微信小程序(小游戏)审核通不过。 腾讯推出了腾讯云,微信小程序解决方案。我申请并开通了,现在怎么装小程序上传到云端,并分享自己的小程序?
2018-01-30 - <audio> 在开发工具上有声音,在手机上没声音
<audio id="myAudio" ></audio> //js 部分 this.audioCtx = wx.createAudioContext('myAudio'); this.audioCtx.setSrc("../au/1.wav");//参数src,音频的地址 this.audioCtx.play();//播放 能给解决一下吗?
2017-12-24 - 列表渲染时,只改一个元素的样式
列表渲染时,只改其中一个元素的样式,怎么实现? 一组图片,当点击一个的时候,这个的样式就改变,我现在要改的话是全部都改的。
2017-12-17 - scroll-view 的事件为什么不能触发?
scroll-view 当距离项部和底部多少时就触发事件,为什么我的代码不能触发,哪里写错了? <scroll-view scroll-x bindscrolltoupper="250" scrolltoupper="DingB" bindscrolltolower="250" scrolltolower="DiB" style= "height:3000rpx; width: 750rpx;flex-direction:row;" > <view class="ys" wx:for="{{t}}" wx:for-item="t" src="{{t}}" style="background:url('{{t}}');background-size:250rpx;display:flex;flex-direction:row;float:left;">{{zhiwu[index]}}view> scroll-view> JS部分 DingB: function () { //距离顶部一定距离时触发该函数 console.log("快到顶部"); }, DiB: function () { //距离底部一定距离时触发该函数 console.log("快到底部"); }, 除了单击事件,没有一个事件是能触发的!
2017-12-10 - 当列表渲染时,同时用到2个数组时,该怎么写?
<view wx:for="{{t1,t2}}" wx:for-item="t1,t2" src="{{t1}}"> {{index}}: {{t2.message}} </view> 同时用到"t1","t2"两个数组,代码该 怎么写?官方怎么没有人员在,问了几个问题都没有回答?
2017-10-08 - scroll-view 的事件为什么都不能触发?
<scroll-view class='bb' upper-threshold lower-threshold bindscrolltoupper='a' bindscrolltolower='b' scroll-top bindtap='a'scroll-y="false" scroll-x="false" bindscrolltoupper="" bindscrolltolower="" bindscroll="" scroll-into-view="" scroll-top="500"> <scroll-view class='aa' upper-threshold lower-threshold bindscrolltoupper='a' bindscrolltolower='b' scroll-top bindtap='b' bindscroll='c' >位置</scroll-view> <image src='../img/00.jpg'></image> </scroll-view> //js a:function(){ console.log(1) }, b:function(){ console.log(2) }, c: function () { console.log(3) },
2017-10-05 - 怎么获取scroll-view的滑动距离
我用到一个scroll-view,这个scroll-view很高,是屏幕的N倍,当用户操作时,我想知道用户操作时屏幕在scroll-view的什么高度。给我个方法,提示,最好是代码!先谢谢大神们了!
2017-09-29 - 请技术人员解答,flex-direction: row 无效
[代码]下面是官方的例子:为什么[代码]flex-direction: row 也不能横排了呢?搞了一个星期了,都不能解决。请技术人员解答! [代码]<view class="section">[代码] [代码] <view class="section__title">flex-direction: rowview> <view class="flex-wrp" style="flex-direction:row;"> <view class="flex-item bc_green">1view> <view class="flex-item bc_red">2view> <view class="flex-item bc_blue">3view> view>view><view class="section"> <view class="section__title">flex-direction: columnview> <view class="flex-wrp" style="height: 300px;flex-direction:column;"> <view class="flex-item bc_green">1view> <view class="flex-item bc_red">2view> <view class="flex-item bc_blue">3view> view>view>[代码][图片] 都提问好几天了,怎么就没有人能帮解决一下呢?我很急。https://developers.weixin.qq.com/blogdetail?action=get_post_info&docid=d86e12ed81a4ea105df5eb3dcb051093&token=544777948&lang=zh_CN
2017-09-27 - flex-direction: row 无效
<scroll-view scroll-y style= "height:1000rpx; width: 2000rpx; display:flex; flex-direction: row;" > <view wx:for="{{t}}" wx:for-item="t" src="{{t}}" style=" width: 250rpx; height: 250rpx;background:url('{{t}}');background-size:250rpx 250rpx; display:flex; flex-direction: row;">水果view> scroll-view> 为什么我设置横向显示:flex-direction: row;无效呢?还多出了滚动条。 [图片] <!--index.wxml--> <scroll-view scroll-y style= "height:1000rpx; width: 2000rpx;" > <image wx:for="{{t}}" wx:for-item="t" src="{{t}}" style=" width: 250rpx; height: 250rpx"></image> <!-- <view wx:for="{{t}}" wx:for-item="t" src="{{t}}" style=" width: 250rpx; height: 250rpx;background:url('{{t}}');background-size:250rpx 250rpx; display:flex; flex-direction: row;">水果</view> --> </scroll-view> [图片] 上面这段还代码就能横排 <!--index.wxml--> <scroll-view scroll-y style= "height:1000rpx; width: 2000rpx;" > <image wx:for="{{t}}" wx:for-item="t" src="{{t}}" style=" width: 250rpx; height: 250rpx"></image> <view wx:for="{{t}}" wx:for-item="t" src="{{t}}" style=" width: 250rpx; height: 250rpx;background:url('{{t}}');background-size:250rpx 250rpx; display:flex; flex-direction: row;">水果</view> </scroll-view> [图片] 菜鸟问题,请多多指教!
2017-09-24 - <view background-image:
老是提示有错误,初学者,找不出来,大师们帮下忙[图片]
2017-09-22