flutter使用webview https证书过期不显示问题,忽略 SSL 错误
使用 flutter_inappwebview 插件,忽略 SSL 错误,用 onReceivedServerTrustAuthRequest 事件,并为指定请求或所有请求返回 ServerTrustAuthResponse(action: ServerTrustAuthResponseAction.PROCEED)。 child: InAppWebView( initialUrlRequest: URLRequest( url: Uri.parse("https://self-signed.badssl
继续阅读
html网页打印字体出现模糊的解决方法
在打印报告时 打印出来的文本是模糊的, 不清晰, 解决方案: 设置打印时字体 设置css 字体 @media print { *, *::before, *::after { text-shadow: none !important; box-shadow: none !important; } a:not(.btn) { text-decoration: underline; } abbr[title]
继续阅读
修改chrome表单自动填充input时文本框背景和文字颜色
浏览器自动填充用户名密码后,文本框背景色为默认黄色 设置想要的文本框背景和字体颜色input:-webkit-autofill,input:-webkit-autofill:focus { -webkit-box-shadow: 0 0 0 1000px #08356d inset; -webkit-text-fill-color: #fff;}
继续阅读
Angular下Chrome自动播放背景视频问题
给登录页面添加自动播放视频背景时,始终无效,Firefox,safari却播放的很好。突然记起 谷歌曾发布阻止网页声音自动播放,<audio autoplay></audio> <video autoplay></video> 怀疑是Chrome播放策略的问题,然而发现别人的网站都能播放,只有自己的有问题后开始各种配置nginx参数,终无效。开始使用使用原生html直接部署到nginx访问,but竟然能够播放了。定位Angular中video 的muted 引入方式:终于发现问题竟然是`muted="muted"` 需要用Angular属性的方式
继续阅读