2021-11-11 每天进步一点点:封装jq的提示插件,另附其他插件

本文介绍了如何使用CSS和JavaScript创建一个位于可视区中央的提示框,确保提示语不重叠且能实时更新。此外,还提供了一个简单的JS方法和示例代码来展示其实现过程。同时提到了一个jQuery提示插件toastr,它使用简单,适合快速实现提示功能。对于仍在使用jQuery进行开发的前端开发者来说,这是一个实用的工具。
摘要由CSDN通过智能技术生成

想要一个这样的提示框,用户点击按钮时,就给他一个提示:
在这里插入图片描述

同时要求,

不管点击哪里的按钮,提示语一定要在可视区的正中间位置。

重复点击同一个按钮,提示语相同,且提示弹框不凌乱、不重叠。

而且 切换点击按钮时,要实时显示新的提示语,并且不显示旧的提示语。

以web端为例:

在页面的最外层包裹层里添加提示的样式:

.toast {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 300px;
      padding: 2px 10px;
      box-sizing: border-box;
      border-radius: 4px;
      font-size: 16px;
      color: #fff;
      background-color: rgba(0, 0, 0, .8);
      pointer-events: none;
      text-align: center;
      z-index: 9999;
    }

添加js方法:

这里的.show_toast就是页面最外层包裹层的类名。

function showToast(text) {
  // 先检查原来有没有toast动画被添加
  // 如果有,就立即结束动画 清空队列并移除盒子
  var _toast =  $('.toast');
  _toast.stop(true, true).remove();

  // 添加新提示盒子
  var _div = $('<div class="toast"></div>');
  _div.appendTo($('.show_wrap'));
  _div.text(text);
  setTimeout(function() {
    _div.fadeOut(300, function() {
      $(this).remove();
    });
  }, 2000)
}

写个demo测试一下:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style>
    * {
      padding: 0;
      margin: 0;
    }
    .hide {
      display: none!important;
    }
    .show_wrap {
      position: relative;
      width: 500px;
      height: 500px;
      background-color: pink;
    }
    .toast {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 300px;
      padding: 2px 10px;
      box-sizing: border-box;
      border-radius: 4px;
      font-size: 16px;
      color: #fff;
      background-color: rgba(0, 0, 0, .8);
      pointer-events: none;
      z-index: 9999;
    }
  </style>
</head>
<body>
  <div class="show_wrap"></div>
  <button class="btn1">click 1</button>
  <button class="btn2">click 2</button>
  </div>
  <script src="./jquery 3.6.0.js"></script>
  <script>
    function showToast(text) {
      // 先检查原来有没有toast动画被添加
      // 如果有,就立即结束动画 清空队列并移除盒子
      var _toast =  $('.toast');
      _toast.stop(true, true).remove();

      // 添加新提示盒子
      var _div = $('<div class="toast"></div>');
      _div.appendTo($('.show_wrap'));
      _div.text(text);
      setTimeout(function() {
        _div.fadeOut(300, function() {
          $(this).remove();
        });
      }, 2000)
    }
    $('.btn1').on('click', function() {
      showToast('111 这里有20多个字 这里有20多个字 这里有20多个字 这里有20多个字 这里有20多个字');
    })

    $('.btn2').on('click', function() {
      showToast('hello 点击了222');
    })
    
  </script>
</body>
</html>

不管怎么点击按钮,提示都是正常的。

该方法用到线上项目,提示正常。 简单、实用。


再介绍一个jq的提示语插件:

toastr

用起来非常简单,直接贴链接吧,感兴趣可以拿走用:

https://www.jq22.com/jquery-info476


jq确实用的不多了,现在流行用框架进行开发。不过像我一样的切图仔、页面仔、老项目维护仔们,绝大多数还在用jq进行开发。 所以,用还是要会用的。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值