- ios15上使用css3动画没有效果
几乎所有升级ios15的手机都会有这问题 使用百分比就没有效果 @keyframes srcollx { form { left: 0%; } to { left: -100%; } } 使用像素就可以 @keyframes srcollx { form { left: 0; } to { left: -750rpx; } }
2021-09-27 - 标签内样式报异常
"{{themeColor}}" themeColor是个变量,这个引号包括其内的代码片段出现红色波浪线,提示 { expectedcss(css-lcurlyexpected),但是代码可以正常运行,是需要style前加引号吗?加引号后红色波浪线消失
2021-07-27 - darkmode=true, wx.getSystemInfo返回theme=undefined?
在小程序 app.json 中按照指南配置 "darkmode": true,在开发者工具中通过 wx.getSystemInfoSync() 调用返回 theme 值为 'light',很正常。 但是在真机中,同样的代码却返回 theme = undefined. 机型:iPhoneX,微信版本 7.0.15,小程序基础库版本: 2.13.1,开发者工具版本:1.03.2010240 这个问题是从升级微信开发者工具到 1.03.2010240 开始出现,之前使用 1.03.2009301 一直是正确的。现在的问题是回退到 1.03.2009301 也一样了。
2020-10-29 - 页面上有一个view用了fixed固定在顶部,滚动过程偶尔会出现1px缝隙
页面上有一个view用了fixed固定在顶部,刚进入第一眼看是没问题的。但页面在滚动过程中,有时顶部就会出现1px的缝隙,并能透过缝隙看到底下滚动层的内容。如截图所示(问题出现过程请看视频:http://www.brandyond.com/public/video/1.mp4,缝隙出现在第15秒和53秒) [图片][图片]
2020-05-13 - 深色模式,模拟器中media查询不起作用,真机调试theme.json中配置不起作用?
1.03.2010240 Windows 64同样darkmode模式,模拟器显示如下: [图片] 真机显示: [图片] theme.json { "light": { "navBgColor": "#ffffff", "navTxtStyle": "black", "bgColor": "#ffffff", "bgTxtStyle": "light", "bgColorTop": "#eeeeee", "bgColorBottom": "#efefef", "tabFontColor": "#000000", "tabSelectedColor": "#3cc51f", "tabBgColor": "#ffffff", "tabBorderStyle": "black" }, "dark": { "navBgColor": "#191919", "navTxtStyle": "white", "bgColor": "#1f1f1f", "bgTxtStyle": "dark", "bgColorTop": "#191919", "bgColorBottom": "#1f1f1f", "tabFontColor": "#ffffff", "tabSelectedColor": "#51a937", "tabBgColor": "#191919", "tabBorderStyle": "white" } } 真机调试的问题今天才出现,也不知道是更新编辑器的原因还是啥?
2020-10-30