zoukankan      html  css  js  c++  java
  • webuipopover 一个轻量级的jquery弹出层插件

    该提示框插件可以和Bootstrap完美结合,但是并不一定需要和Bootstrap一起使用。它支持IE7以上的浏览器。

    首先要引入需要的css  js  文件 

    <link rel="stylesheet" href="jquery.webui-popover.css">
    <script src="jquery.js">
    </script> <script src="jquery.webui-popover.js"></script>
     
    使用 :  $('a').webuiPopover(options);

    简单的弹出菜单:

    $('a').webuiPopover({title:'Title',content:'Content'});
    

    在DOM中使用 data-* 属性创建弹出层:

    <a href="#" data-title="Title" data-content="Contents..." data-placement="right">show pop</a>
    
    $('a').webuiPopover();
    

    或者设置一个div层,添加类名 webui-popover-content

    <a href="#" >shop pop</a>
    <div class="webui-popover-content">
       <p>popover content</p>
    </div>
    
    $('a').webuiPopover();
    

    参数:

    {
        placement:'auto',//值: auto,top,right,bottom,left,top-right,top-left,bottom-right,bottom-left  要显示的位置
        'auto',//可以设置数字  
        height:'auto',//可以设置数字    
        trigger:'click',//值:click,hover 触发方式
        style:'',//值:'',inverse  
        delay:300,//延迟时间, 悬浮属性才执行
        cache:true,//如果缓存设置为false,将重建
        multi:false,//在页面允许其他弹出层
        arrow:true,//是否显示箭头
        title:'',//标题,如果标题设置为空字符串时,标题栏会自动隐藏
        content:'',//内容,内容可以是函数
        closeable:false,//显示关闭按钮
        padding:true,//内容填充
        type:'html',//内容类型, 值:'html','iframe','async'
        url:''//如果不是空的,插件将通过url加载内容
    }


  • 相关阅读:
    [算法]位运算问题之二
    [算法]位运算问题之一
    [算法]海量数据问题之二
    [算法]海量数据问题之一
    [算法]旋转词问题
    [算法]去掉字符串中连续出现的k个0子串
    [算法]字符串中数字子串的求和
    [算法]字符串之变形词问题
    Linux常用命令
    数据库中的事物
  • 原文地址:https://www.cnblogs.com/maxiag/p/10286028.html
Copyright © 2011-2022 走看看