小程序
小游戏
企业微信
微信支付
扫描小程序码分享
1、小程序通过webview加载H5页面。H5页面设置x轴滚动条通过如下代码给外层div添加: $(this).parent().css("width", "1200px"); $(this).parent().css("overflow-x", "auto"); 2、PC端打开小程序,通过WebView访问的页面。表格列若过多;会出现x轴滚动条,但PC端小程序不会出现(且无法进行滚动)。 手机打开小程序、电脑/手机直接访问对应网页,均可以。对比如图
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
你好,提供下复现链接
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
问题原因应该是滚动条对PC微信版的内置浏览器兼容问题
解决方法重绘滚动条样式。具体代码如下:
/** 手动设置滚动条样式 ** start ** overFlowDiv为设置滚动条溢出的DIV类名:**/ .overFlowDiv::-webkit-scrollbar-track-piece { background-color: #f1f1f1; border-left: 1px solid rgba(0, 0, 0, 0); } .overFlowDiv::-webkit-scrollbar { width: 5px; height: 13px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .overFlowDiv::-webkit-scrollbar-thumb { background-color: #c1c1c1; background-clip: padding-box; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; min-height: 28px; } .overFlowDiv::-webkit-scrollbar-thumb:hover { background-color: #787878; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } /** 手动设置滚动条样式 ** end **/
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
你好,提供下复现链接
问题原因应该是滚动条对PC微信版的内置浏览器兼容问题
解决方法重绘滚动条样式。具体代码如下:
/** 手动设置滚动条样式 ** start ** overFlowDiv为设置滚动条溢出的DIV类名:**/ .overFlowDiv::-webkit-scrollbar-track-piece { background-color: #f1f1f1; border-left: 1px solid rgba(0, 0, 0, 0); } .overFlowDiv::-webkit-scrollbar { width: 5px; height: 13px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } .overFlowDiv::-webkit-scrollbar-thumb { background-color: #c1c1c1; background-clip: padding-box; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; min-height: 28px; } .overFlowDiv::-webkit-scrollbar-thumb:hover { background-color: #787878; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; } /** 手动设置滚动条样式 ** end **/