//弹窗弹出
$(function(){
$("#cardMeNot").click(function(){
$("#cardTan").slideDown(500);
$("body").css({"overflow":"hidden","height":"100%"});
});
//关闭弹框
$("#tanClose").click(function(){
$("#cardTan").slideUp(500);
$("body").css({"overflow":"auto"});
});
})
http://blog.163.com/m18201093835_1/blog/static/265923023201712265053888/
相关文章:
- 移动端弹出模态框禁止页面滑动 2022-12-23
- 移动端页面 弹出框滚动,底部body锁定,不滚动 / 微信网页禁止回弹效果 2022-12-23
- 小程序有弹窗出现时,底部禁止页面滚动 2022-12-23
- mask 遮罩层弹窗禁止页面滚动 2022-12-23
- jquery弹窗时禁止body滚动条滚动 2022-12-23
- 禁止页面回弹 2021-10-06
- 微信小程序自定义弹框禁止页面滚动 2022-12-23
- vue 移动端弹窗后禁止页面滚动 @touchmove.prevent 2022-12-23