You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
540 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.scroll-container {
width: 100%;
height: 1300px;
overflow-y: scroll;
-webkit-overflow-scrolling: touch;
}
</style>
</head>
<body>
<div class="scroll-container">
<p>这里是一些文本内容,用于演示触摸滚动。</p>
<!-- 在这里添加更多内容,以便在容器中产生滚动效果 -->
</div>
</body>
</html>