mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
24 lines
439 B
HTML
24 lines
439 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
overflow: hidden;
|
|
}
|
|
#a {
|
|
background-color: green;
|
|
width: 100px;
|
|
height: 1000px;
|
|
}
|
|
</style>
|
|
<script>
|
|
function allowScroll()
|
|
{
|
|
document.body.style.overflow = "auto";
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
This page is not scrollable until allowScroll() is called.
|
|
<div id="a"></div>
|
|
</body>
|
|
</html> |