移动端键盘唤醒时 antd Modal 和 position: fixed; bottom: 0; 吸底按钮的处理方案

移动端键盘唤醒时 antd Modal 和 position: fixed; bottom: 0; 吸底按钮的处理方案

问题一

输入框获得焦点键盘唤醒时通过样式 position: fixed; bottom: 0 吸底的按钮会同步平移到键盘上方,体验很差

键盘弹出后吸底按钮跟随上移

原因分析

当键盘唤醒时,浏览器对应的高度区域就变成了除键盘之外的区域,而样式为 position: fixed; bottom: 0 理所应当的会在浏览器区域的最下方

解决方案

检测到屏幕高度变化时修改样式 position: fixed; bottom: 0 为 position: relative 自然的流式布局,并在检测到屏幕变大时恢复 position: fixed; bottom: 0 吸底样式

代码

const [isKeyboardShow, setIsKeyboardShow] = useState<boolean>(false);

useEffect(() => {
    setClientHeight(document.documentElement.clientHeight || document.body.clientHeight);
    window.onresize = () => {
        const currentHeight = document.documentElement.clientHeight || document.body.clientHeight;
        setClientHeight(pre => {
            if (currentHeight < pre) {
                setIsKeyboardShow(true);
                // 兼容有的浏览器 不变的时候也会触发
            } else if (currentHeight > pre) {
                setIsKeyboardShow(false);
            }
            return currentHeight;
        });
    };
}, []);

<div styles={{display: isKeyboardShow? 'relative' : 'fixed'}} >
    <Button>
        预约咨询定制服务
    </Button>
</div>

问题二

输入框获得焦点键盘唤醒时 antd Modal 弹框会滚动至最上方

键盘唤醒后 Modal 上移问题

原因分析

Antd Modal 默认是挂载到 body 上的,当键盘唤醒是,body 高度发生变化,导致 Modal 位置变化

解决方案

配置 Modal 挂载节点为当前或者其他不变的 dom 节点即可,Modal API
在这里插入图片描述

最终效果

移动端键盘唤醒时 Modal 和 吸底处理

antd(Ant Design)是基于React的UI框架,它提供了一套完整的React组件。在antd中,弹窗组件(Modal)可以被用来创建模态对话框,而底部按钮则可以通过在Modal组件中添加Footer来实现。如果想要让弹窗底部按钮固定在浏览器的一定位置,需要结合CSS样式来实现。 可以使用`position: fixed;`样式将弹窗固定在浏览器的某个位置,同确保在页面滚动弹窗不会随之移动。需要注意的是,使用`position: fixed;`可能会导致弹窗内容与视口边缘重叠,因此可能需要额外的样式来调整弹窗的位置,确保它显示在期望的位置。 以下是一个简单的示例代码,展示了如何在antdModal组件中设置固定位置的底部按钮: ```jsx import React from 'react'; import { Modal, Button } from 'antd'; const FixedFooterModal = () => { const [visible, setVisible] = React.useState(false); const showModal = () => { setVisible(true); }; const handleOk = () => { setVisible(false); }; const handleCancel = () => { setVisible(false); }; return ( <> <Button type="primary" onClick={showModal}> Open Modal with Fixed Footer </Button> <Modal title="Fixed Footer Modal" visible={visible} onCancel={handleCancel} onOk={handleOk} footer={null} // 移除默认的底部按钮 > <div style={{ position: 'absolute', bottom: 0, width: '100%', textAlign: 'center', padding: '10px 0' }}> <Button type="primary" style={{ marginRight: '8px' }} onClick={handleOk}> 确定 </Button> <Button onClick={handleCancel}> 取消 </Button> </div> </Modal> </> ); }; export default FixedFooterModal; ``` 在这个示例中,我们将Modal的footer属性设置为null,并在Modal内部使用绝对定位来放置一个自定义的底部按钮区域。这样即使页面滚动,按钮区域也会保持在Modal的底部。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值