IE
白屏
引用swiper的vue项目在ie浏览器下打开空白
2019.11.08
最新的swiper4在ie中显示会出问题
解决
1、将版本降到3.4.2,
2、参考:引用swiper的vue项目在ie浏览器下打开空白,以及编程习惯方面的思考
css
滚动条
溢出滚动并去掉滚动条兼容火狐各浏览器
https://blog.csdn.net/qq_42565994/article/details/100559649
**
.g-clear-scroll {
scrollbar-width: none;
-ms-overflow-style: none;
}
Firefox
刷新
为什么火狐下window.location.reload();不刷新页面?
https://blog.csdn.net/xjwweb/article/details/109569284
无效操作
window.location.hrefwindow.locationwindow.location.reload()location.reload()window.event.returnValue = true
code
setTimeout(()=>{window.location.reload(true)},200)};
给个定时器就可以刷新了,希望对你们有帮助!
画中画
火狐浏览器关闭画中画
https://jingyan.baidu.com/article/acf728fd1610d4b9e410a361.html
css
滚动条
溢出滚动并去掉滚动条兼容火狐各浏览器
https://blog.csdn.net/qq_42565994/article/details/100559649
**
.g-clear-scroll {
scrollbar-width: none;
-ms-overflow-style: none;
}
chrome
css
滚动条
溢出滚动并去掉滚动条兼容火狐各浏览器
https://blog.csdn.net/qq_42565994/article/details/100559649
**
.g-clear-scroll::-webkit-scrollbar {
display: none;
}
safari
css
滚动条
溢出滚动并去掉滚动条兼容火狐各浏览器
https://blog.csdn.net/qq_42565994/article/details/100559649
**
.g-clear-scroll::-webkit-scrollbar {
display: none;
}