移动端共用提示语

封装getCommonTips方法

参数传入提示文字,自适应提示框根据提示文字,自适应居中显示
定时器 2S后清除此提示相关代码
遇见难点: 多次点击,多次触发函数,重复出现提示语,影响用户体验
解决办法: 每次点击移除getCommonTips方法,点击无反应,2S后给onclick添加getCommonTips方法,再次传入提示文字
function getCommonTips(text) {
    // $(obj).attr("onclick","");
    this.str = '';
    this.str += `
            <div class="commonTips_box">
                <style>
                    .commonTips_box{
                        width: 100%;
                        display: -webkit-flex;
                        display: flex;
                        justify-content: center;
                        position: fixed;
                        left: 0;
                        bottom: 0;
                        z-index: 9999999;
                    }
                    .commonTips{
                        width:10rem;
                        /*background-color: #000;*/
                        display: -webkit-flex;
                        display: flex;
                        justify-content: center;
                        transition:all 0.5s;
                        -webkit-transition:all 0.5s;
                    }
                    .commonTips h1{
                        font-size: 0.4rem;
                        border-radius: 0.5rem;
                        background: rgba(0,0,0,.5);
                        display: -webkit-flex;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                    }
                    .commonTips h1 span{
                        display: block;
                        color: #fff;
                        padding: 0.17333333333333334rem 0.26666666666666666rem;
                        margin-top: -0.025rem;
                    }
                </style>
                <div class="commonTips">
                    <h1><span>${text}</span></h1>
                </div>
            </div>
        `;
    $("body").append(str);
    setTimeout(()=>{
        $(".commonTips").css("margin-bottom","10%")
    },10);
    setTimeout(()=>{
        $(".commonTips_box").remove();
        // $(obj).attr("onclick","getCommonTips(this,"+text+")");
    },2000);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值