防止网页iframe被嵌套时出现滚动条/隐藏嵌套网页滚动条
注意:只能用在被嵌套时生效哦,如果你需要隐藏其他形式的滚动条则需要另外写
代码如下
<script>
//这是防止微信嵌套时,显示滚动条的代码
if (window.top !== window.self) {
const style = document.createElement('style');
style.innerHTML = `
/* 设置滚动条变得非常细 */
::-webkit-scrollbar {
width: 0px; /* 非常细的滚动条 */
}
::-webkit-scrollbar-thumb {
background-color: transparent; /* 滚动条滑块透明 */
}
::-webkit-scrollbar-track {
background-color: transparent; /* 滚动条轨道透明 */
}
`;
document.head.appendChild(style);
}
</script>