gpt4 book ai didi

javascript - 防止在 Mac 上的 Safari 中拖动滚动

转载 作者:行者123 更新时间:2023-12-04 14:51:21 24 4
gpt4 key购买 nike

看看this codepen
Angular 落里有红色方 block 。
enter image description here
如果您单击(使用鼠标或触摸板)此方 block 并将其向下拖动 - 在 Mac 上的 Safari 中,.parent 元素将向下滚动。
即使 .parent 有 overflow-y: hidden;

enter image description here

在所有其他浏览器中不会发生滚动。
如何防止在 safari 上滚动?作为一个粗略的解决方案,我可以监听滚动并在它不为零时覆盖 scrollTop,但也许有更优雅的解决方案?

最佳答案

您可以添加一个中间 div。然后,为其设置宽度、高度、溢出属性。

.parent {
width: 200px;
height: 200px;
border: 1px dashed black;
overflow-x: auto;
overflow-y: hidden;
}

/** intermediary div */
.parent > div {
width: 200%;
height: 100%;
overflow: hidden;
}

.child {
width: 100%; /** this should be 100% **/
height: 200%;
background: linear-gradient(to right bottom, red, tomato), linear-gradient(to bottom, white, black);
background-size: 50px 50px, 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
<div class="parent">
<div>
<div class="child"></div>
</div>
</div>

或者将 pointer-events:none 添加到父级。

.parent {
/* This prevents dragging */
pointer-events: none;
width: 200px;
height: 200px;
border: 1px dashed black;
overflow-x: auto;
overflow-y: hidden;
}
.child {
width: 200%;
height: 200%;
background: linear-gradient(to right bottom, red, tomato), linear-gradient(to bottom, white, black);
background-size: 50px 50px, 100% 100%;
background-repeat: no-repeat;
background-position: center;
}
<div class="parent">
<div class="child"></div>
</div>

关于javascript - 防止在 Mac 上的 Safari 中拖动滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69041859/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com