我正在使用以下代码
屏幕更大 999px
<script>
if ((window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth) >= 999) {
// Show on screens bigger than 999px
}
</script>
屏幕小于 767px
<script>
if ((window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth) < 767) {
// Show on screens smaller than 767px
}
</script>
现在我的目标是显示 970 到 768 之间的东西
我已经尝试了下面的代码,但这在 767px 以下也可见
<script>
if ((window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth) < 970) {
// Show on screens from 970 till 768
}
</script>
我如何设置它只显示在 970 到 768 的屏幕上?我不会使用 CSS。
陪伴而非守候
小怪兽爱吃肉
相关分类