- image 如何用svg ?
<image style="width: 200px; height: 200px;"> <svg xmlns="http://www.w3.org/2000/svg" fill="red" viewBox="0 0 24 24" stroke-width="1.5" stroke="red" class="w-6 h-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 4.5v15m7.5-7.5h-15" /> </svg> </image> 什么也不显示,上面代码。 没看有官方代码示例。 文档里说的image 支持svg , 是不是我用错了?
05-11 - 大神们谁知道skyline 下如何调input高度?
webview 起作用的height 在skyline 下根本不起作用。
05-09 - skyline 下weui 扩展库无法使用 新版何时上线?
如文档 里所述 weui 扩展库无法使用 平台正在支持扩展库,预计近期上线。建议开发者使用 npm 安装 weui 组件库 后,将 node_ modules/weui-miniprogram 下的miniprogram_ dist 替换为 链接 中的 miniprogram_dist,然后在微信开发中工具中构建 npm 即可。
05-09 - skyline 模式下input 高度调不了?
webview 模式都正常,转到Skyline 下就不好用了, 还有下面在webview 运行正常,skyline 也是报错了。 let query = this.createSelectorQuery(); console.log(query) query.select('#the-id').boundingClientRect(); 兼容性问题太严重了,之前运行好好代码,升级到skyline 都不好用了。
05-08 - css 阴影多个值不支持?
CSS box-shadow: 5px 5px rgba(240, 46, 170, 0.4), 10px 10px rgba(240, 46, 170, 0.3); 多重阴影不支持? 我试过不好用。
05-08 - [skyline] 不支持 webp 图片?
image 组件,图片格式webp webview 模式下显示正常, Failed to load resource: the server responded with a status of 500 (Internal Server Error)(env: Windows,mp,1.06.2401020; lib: 3.4.2) [skyline]load images/gril.webp fail
05-06 - worklet.timing toValue 类型问题?
SharedValue worklet.shared(any initialValue)参数 any initialValue(任何类型包括数组)初始值,可通过 [代码].value[代码] 属性进行读取和修改。类型可以是 [代码]number | string | bool | null | undefined | Object | [代码][代码]Array [代码][代码]| Function[代码]。 但是AnimationObject worklet.timing(number toValue, Object options, function callback) 但timing 只支持number ? 如果用shared 创建了一个数组,如何用timing 去改变这个值? 官方例子都是用的number ,没有其他类型的说明。const { shared, sequence, timing, spring } = wx.worklet const offset = shared(0) offset.value = sequence(timing(100), spring(0)) 上面是官方例子,如要改成 数组呢怎么办? const offset = shared([0,100]) offset.value = sequence(timing(???????), spring(0)) 针对CSS不光有数值上的调整,字符串也需要,display:flex background-color: cornflowerblue ,这种怎么办?
05-04 - SharedValue worklet.shared(any initialValue)
为什么是数组就不好用,比如 onLoad() { const offset = wx.worklet.shared([0,"#fff4"]) console.log(offset[0],offset[1]) this.applyAnimatedStyle('#moved-box', () => { 'worklet'; return { boxShadow: `0 0 0 ${offset.value[0]}px ${offset.value[1]}` } }) this._offset = offset }, tap() { // 点击时修改 sharedValue 值,驱动小球移动 //this._offset.value = Math.random()*10 this._offset.value = [Math.floor(Math.random()*100),"#fff0"] //this.didRepeat() console.log("click tap",this._offset,this._offset.value[0]) }, 这是一个数组,但是这么设置,applyAnimatedStyle 没有随值的变化而去应用新的Style, 这是什么原因?不是数组情况下好用。 官方能不能给一个数组的例子,文档太单薄了。
05-04 - applyAnimatedStyle 设置阴影如何写?
onLoad() { const offset = wx.worklet.shared(0) this.applyAnimatedStyle('#moved-box', () => { 'worklet'; return { box-shadow: ` 0 0 0 20px #fff, 0 0 0 40px red;` } }) this._offset = offset }, 如上面的代码,box-shadow ‘小横线’是会报错的,不知道怎么写?我就是想动态的调协阴影。 官方都是transform的设置。 const offset = shared(0) this.applyAnimatedStyle('#moved-box', () => { 'worklet'; return { transform: `translateX(${offset.value}px)` } }) this._offset = offset }, 资料不是很全面啊。
05-03 - 订阅消息的查看详情跳转,打开是‘页面不存在’?
app.json 的页面配置是 "components/audit/audit", 然后这是这样的调用的 [图片] 这有什么不对吗? 为什么会是页面不存在。
2022-09-14