exercise.md 415 字节
Newer Older
王天雷 已提交
1
# ios设置页面回弹开关
王天雷 已提交
2

m0_65861709's avatar
update  
m0_65861709 已提交
3
想要阻止ios设备页面回弹效果,我们应该使用下列选项中的哪个方法?
王天雷 已提交
4 5 6

## 答案

m0_65861709's avatar
update  
m0_65861709 已提交
7
在pages.json中配置pages.style.disableScroll=true
王天雷 已提交
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

## 选项

### A

::-webkit-scrollbar {
width: 0;
height: 0;
background-color: transparent;
}

### B

overflow-y:hidden;

### C

在pages.json中配置"scrollIndicator": "none"

L
luxin 已提交
27
### D
m0_65861709's avatar
update  
m0_65861709 已提交
28

L
luxin 已提交
29
在pages.json中配置"bounce": "none"