ใน Chrome 63+, Firefox 59+ และ Opera 50+ คุณสามารถทำได้ใน CSS:
body {
overscroll-behavior-y: none;
}
สิ่งนี้จะปิดใช้งานเอฟเฟกต์การรัดยางบน iOS ที่แสดงในภาพหน้าจอของคำถาม อย่างไรก็ตามมันยังปิดใช้งานแบบดึงเพื่อรีเฟรชเอฟเฟกต์เรืองแสงและการเลื่อนโซ่
อย่างไรก็ตามคุณสามารถเลือกที่จะใช้เอฟเฟกต์หรือฟังก์ชันของคุณเองได้เมื่อเลื่อนมากเกินไป ตัวอย่างเช่นหากคุณต้องการเบลอหน้าและเพิ่มภาพเคลื่อนไหวที่เป็นระเบียบ:
<style>
body.refreshing #inbox {
filter: blur(1px);
touch-action: none; /* prevent scrolling */
}
body.refreshing .refresher {
transform: translate3d(0,150%,0) scale(1);
z-index: 1;
}
.refresher {
--refresh-width: 55px;
pointer-events: none;
width: var(--refresh-width);
height: var(--refresh-width);
border-radius: 50%;
position: absolute;
transition: all 300ms cubic-bezier(0,0,0.2,1);
will-change: transform, opacity;
...
}
</style>
<div class="refresher">
<div class="loading-bar"></div>
<div class="loading-bar"></div>
<div class="loading-bar"></div>
<div class="loading-bar"></div>
</div>
<section id="inbox"><!-- msgs --></section>
<script>
let _startY;
const inbox = document.querySelector('#inbox');
inbox.addEventListener('touchstart', e => {
_startY = e.touches[0].pageY;
}, {passive: true});
inbox.addEventListener('touchmove', e => {
const y = e.touches[0].pageY;
// Activate custom pull-to-refresh effects when at the top of the container
// and user is scrolling up.
if (document.scrollingElement.scrollTop === 0 && y > _startY &&
!document.body.classList.contains('refreshing')) {
// refresh inbox.
}
}, {passive: true});
</script>
รองรับเบราว์เซอร์
จากการเขียนนี้ Chrome 63+ Firefox 59+ และ Opera 50+ รองรับ Edge สนับสนุนแบบสาธารณะในขณะที่ Safari ไม่เป็นที่รู้จัก ติดตามความคืบหน้าได้ที่นี่และความเข้ากันได้ของเบราว์เซอร์ปัจจุบันได้ที่เอกสาร MDN
ข้อมูลมากกว่านี้