弹出层(通常称为模态窗口或对话框)的滚动行为可以通过CSS和JavaScript来实现。以下是一个简单的实现方式:
HTML
```html
```
CSS
```css
/ 弹出层样式 /
.modal {
display: none; / 默认不显示 /
position: fixed; / 固定位置 /
z-index: 1; / 确保在最上层 /
left: 0;
top: 0;
width: 100%; / 全屏宽度 /
height: 100%; / 全屏高度 /
overflow: auto; / 如果内容超出屏幕,允许滚动 /
background-color: rgb(0,0,0); / 背景颜色 /
background-color: rgba(0,0,0,0.4); / 背景透明度 /