zyt-it
1.<!--防止软键盘压缩页面背景图片-->
<script>
const bodyHeight = document.documentElement.clientHeight
const container = document.getElementById(\'container\');
container.style.height = bodyHeight + \'px\'
</script>
 
2.input 焦点颜色
 input.custom {
caret-color: red;
}

3.ios滚动不流畅
  -webkit-overflow-scrolling : touch;
4.遮罩层下面的内容不滚动
      // 禁止滑动
.      modal-open{
        position: fixed;
        width: 100%;
        height:100%;
      }
5.禁止页面中的图片,点击成为单张的图片                   
pointer-events:none;

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-12-19
  • 2022-02-25
  • 2021-09-02
  • 2021-08-10
  • 2021-04-12
猜你喜欢
  • 2022-12-23
  • 2021-06-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-19
  • 2021-12-19
相关资源
相似解决方案