动画富文本工具提示和Popover插件 jQuery serialtip

  • 源码大小:10.47KB
  • 所需积分:1积分
  • 源码编号:19JP-3647
  • 浏览次数:1034次
  • 最后更新:2023年07月06日
  • 所属栏目:工具提示
本站默认解压密码:19jp.com 或 19jp_com

简介

在创建网站和web应用程序时,工具提示和弹出窗口是两种非常常用的、可定制的交互式视觉元素。它们使用鼠标交互在用户界面组件上显示信息或触发某些事件。

serialtip是一个轻量级的jQuery插件,用于轻松创建动画、可自定义的富文本工具提示和弹出窗口,这些工具提示和窗口在悬停或单击时显示在任何HTML元素上。

如何使用它:

1.在文档中加载jQuery库和serialtip插件的文件。

  1. <link rel="stylesheet" href="/path/to/dist/jquery.serialtip.css" />
  2. <script src="/path/to/cdn/jquery.min.js"></script>
  3. <script src="/path/to/dist/jquery.serialtip.min.js"></script>

2.将您的内容添加到DIV容器中。请注意,每个工具提示或弹出窗口必须使用数据串行提示目标属性

  1. <div data-serialtip-target="example" class="serialtip-default">
  2. <!-- Close Button -->
  3. <span class="serialtip-close"></span>
  4. <h5 class="serialtip-title">Tooltip/Popover Title</h5>
  5. <p>Tooltip/Popover Content</p>
  6. </div>

3.将工具提示/弹出窗口附加到您指定的元素。

  1. <span data-serialtip="example">
  2. Hover/Click Me
  3. </span>

4.将插件初始化为popover。

  1. $(function(){
  2. $('[data-serialtip]').serialtip();
  3. });

5.将插件初始化为工具提示。

  1. $(function(){
  2. $('[data-serialtip]').serialtip({
  3. event: 'hover',
  4. });
  5. });

6.创建自己的主题。

  1. .serialtip-custom {
  2. padding: 30px;
  3. background-color: #fff;
  4. box-shadow: 5px 5px 35px 5px rgba(0, 0, 0, .1);
  5. font-size: 14px;
  6. color: #666;
  7. }
  8.  
  9. .serialtip-custom:before {
  10. content: '';
  11. position: absolute;
  12. width: 0;
  13. height: 0;
  14. border: solid transparent;
  15. }
  16.  
  17. .serialtip-custom.is-placement-bottom:before {
  18. bottom: 100%;
  19. left: 50%;
  20. margin-left: -6px;
  21. border-width: 0 6px 6px 6px;
  22. border-bottom-color: #fff;
  23. }
  1. <div data-serialtip-target="example" class="serialtip-custom">
  2. <!-- Close Button -->
  3. <span class="serialtip-close"></span>
  4. <h5 class="serialtip-title">Tooltip/Popover Title</h5>
  5. <p>Tooltip/Popover Content</p>
  6. </div>

7.设置工具提示的位置。

  • 顶部/左侧
  • 顶部/中心
  • 顶部/右侧
  • 右侧/顶部
  • 右侧/中间
  • 右侧/底部
  • 底部/左侧
  • 底部/中心
  • 底部/右侧
  • 左侧/顶部
  • 左/中
  • 左侧/底部
  1. $(function(){
  2. $('[data-serialtip]').serialtip({
  3. position: 'bottom center', // default
  4. });
  5. });

8.设置触发工具提示/弹出窗口之前的等待时间。默认值:300ms。

  1. $(function(){
  2. $('[data-serialtip]').serialtip({
  3. delay: 100,
  4. });
  5. });

9.更多插件选项。

  1. $(function(){
  2. $('[data-serialtip]').serialtip({
  3.  
  4. // CSS class for close button
  5. closeClass: 'serialtip-close',
  6.  
  7. // CSS class for active tooltip/popover
  8. activeClass: 'is-active',
  9.  
  10. // Function to get the target tooltip/popover
  11. getTarget: function($trigger){
  12. const target = $trigger.data('serialtip');
  13. return $('[data-serialtip-target="'+ target +'"]');
  14. }
  15.  
  16. });
  17. });

预览截图