- 小程序中flex布局后如何调整元素所在高度?
如题,用了flex布局把两个元素调整成了中间位置。但是只是在最顶上的中间位置,我希望把这两个元素放到偏底部的中间位置,请问我该怎么做?在wxss中如何进行设置?还要考虑各个机型不同的适配问题。
2022-12-05 - 能否禁止小程序在ipad端打开?
如题,能不能在用户通过ipad进入小程序后 小程序显示“目前不支持ipad 请移步手机端” (可能说复杂了 就是能不能小程序禁用ipad玩
2022-12-04 - 程序中把字体设置为了宋体(serif),真机调试中还是原字体?
如题,已经在wxss中用font-family把字体设置为了Serif,真机调试的时候还是原字体没有变化。 这种情况有什么解决方法吗?
2022-11-18 - 按钮点击下去变透明应该怎么做?
就像按钮按下去变色一样,现在需要实现按钮按下去后,改变按钮透明度。
2022-10-20 - 为什么小程序再次进入后会卡在首页?
最近在开发一个小程序,小程序退出后再进入,会卡在首页。 首页可能是东西正在加载,也有可能是东西全部加载出来,但是点击“开始”按键无效,需要过一段时间恢复正常。 不知道这种bug是为什么呢?有没有什么解决方式?
2022-10-03 - 选项的呼吸灯动画效果(旁边有个一闪一烁的点)是否好做?
目前程序设计了一种选项选中变化的效果:呼吸灯(就是选中这个选项后 选项旁边出现一个一闪一烁的点 示意你选中了这个选项) 不知道这种呼吸灯效果怎么做?是否好做呢?
2022-09-22 - 想要在Canvas 2D中实现文字、图片的变化功能?
如js中所示,显示的词汇是word 和 word2,想要增加一个按键(bindtap="changing"),一键下去,word和word2会更新自己的内容。 但是目前的效果是,按了按钮canvas上并不会更新文字。不知道有没有什么解决办法? js: var word = "你是XX星" var word2 = "某某形容词" changing:function(){ word:"你是五颗星" word2:"美好的 闪亮的" }, wx.createSelectorQuery() .select('#canvas') .fields({ node: true, size: true }) .exec(async (res) => { const canvas = res[0].node; // Canvas 绘制上下文 const ctx = canvas.getContext('2d'); //画布大小根据屏幕分辨率进行缩放,防止模糊 const renderWidth = res[0].width const renderHeight = res[0].height // 初始化画布大熊啊 const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = renderWidth*dpr canvas.height = renderHeight*dpr ctx.scale(dpr, dpr) //画布背景色 ctx.fillStyle = "white"; //ctx.fillRect(0, 0, canvas.width, canvas.height) //画图片 const image = canvas.createImage() image.src = "图片地址1" image.onload = ()=>{ ctx.drawImage(image,0,0,414,650) ctx.fillStyle = "white"; ctx.font= 'normal bold 20px sans-serif' ctx.fillText(word,100,320) ctx.font= 'normal bold 20px sans-serif' ctx.fillText(word2,100,350) } const image2 = canvas.createImage() image2.src = "图片地址2" image2.onload = ()=>{ ctx.drawImage(image2,30,0,350,350) }
2022-09-19 - 帧动画(移动效果)在真机调试上失效?
一个很简单的动画,就是将背景图片从一端移动到另外一端,使用帧动画的写法,在真机调试上发现无法移动?请问这是为什么? wxml: <view class = "container" style="background-color:rgb(80, 80, 80);" > <image id = "bgimg" class = "bg" src="图片地址" ></image> </view> <button bindtap = "movebg">MOVE</button> js: var windowWidth = wx.getSystemInfoSync().windowWidth var windowHeight = wx.getSystemInfoSync().windowHeight Page({ movebg:function(){ if (windowHeight>=800){ setTimeout(()=>{ this.animate("#bgimg",[{ translateX:-1500*windowWidth/750,translateY:-2750*windowWidth/750}, {translateX:-1650*windowWidth/750, translateY:-1560*windowWidth/750}],2400,)},2100) } if (windowHeight>=700 && windowHeight<800){ setTimeout(()=>{ this.animate("#bgimg",[{ translateX:-1475*windowWidth/750,translateY:-2710*windowWidth/750}, {translateX:-1585*windowWidth/750, translateY:-1540*windowWidth/750}],2400,)},2100) } if (windowHeight>=600 && windowHeight<700){ setTimeout(()=>{ this.animate("#bgimg",[{ translateX:-1180*windowWidth/750,translateY:-2250*windowWidth/750}, {translateX:-1280*windowWidth/750, translateY:-1290*windowWidth/750}],2400,)},2100) } if (windowHeight<600){ setTimeout(()=>{ this.animate("#bgimg",[ {translateX:-1150*windowWidth/750,translateY:-2210*windowWidth/750}, {translateX:-1250*windowWidth/750, translateY:-1260*windowWidth/750}],2400,)},2100) } } })
2022-09-16 - canvas 2D 背景图片覆盖文字的问题?
我希望背景图片置于文字下方,但是一旦写了文字和图片,图片就会覆盖掉文字,不知道有没有什么方法可以安排一下图片和文字的优先级顺序? js: wx.createSelectorQuery() .select('#canvas') .fields({ node: true, size: true }) .exec(async (res) => { const canvas = res[0].node; // Canvas 绘制上下文 const ctx = canvas.getContext('2d'); //画布大小根据屏幕分辨率进行缩放,防止模糊 const renderWidth = res[0].width const renderHeight = res[0].height // 初始化画布大熊啊 const dpr = wx.getSystemInfoSync().pixelRatio canvas.width = renderWidth*dpr canvas.height = renderHeight*dpr ctx.scale(dpr, dpr) //画布背景色 //ctx.fillStyle = "pink"; //ctx.fillRect(0, 0, canvas.width, canvas.height) //画图片 const image = canvas.createImage() image.src = "图片地址" image.onload = ()=>{ ctx.drawImage(image,100,10,414,650) } // 标题 ctx.font= 'normal bold 15px sans-serif' ctx.textAligh = "center" ctx.textBaseline = "middle" ctx.fillText('这是一个测试',100,100) ctx.font= 'normal bold 15px sans-serif' ctx.fillText('这是二个测试',200,100) })
2022-09-15 - canvass中的图片、文字优先级问题?(图片覆盖文字)
canvas中的优先级是怎样的? 插入图片之中,不论文字代码放在插入图片代码的前面或者后面,图片都会覆盖掉文字。 有什么解决方法吗?
2022-09-01