当前位置:  编程技术>jquery

jquery.qtip插件简单入门实例

    来源: 互联网  发布时间:2014-10-08

    本文导语:  例子,jquery.qtip插件用法。   代码示例:                $(document).ready(      function(){          //使用插件默认的样式显示,content是指要显示的内容(包括文字和图片)          $("#huangbiao").qtip({    ...

例子,jquery.qtip插件用法。
 

代码示例:
 
 
 
 
 
  
 
$(document).ready( 
    function(){ 
        //使用插件默认的样式显示,content是指要显示的内容(包括文字和图片) 
        $("#huangbiao").qtip({ 
            content: 'Stems are great for indicating the context of the tooltip.', 
            style: {  
                tip: 'bottomLeft' // Notice the corner value is identical to the previously mentioned positioning corners 
            } 
        }); 
         
        //style json是对提示样式的设置即外面的div样式设置,但是没有设置具体的位置 
        $("#huangbiao1").qtip({ 
            content: '设置显示文字样式', 
            style: {  
                width: 200, 
                padding: 5, 
                background: '#A2D959', 
                color: 'black', 
                textAlign: 'center', 
                border: { 
                    width: 7, 
                    radius: 5, 
                    color: '#A2D959' 
                }, 
                tip: 'bottomLeft', 
                name: 'dark' // Inherit the rest of the attributes from the preset dark style 
            } 
        }); 
         
        //name:'green' 是继承了默认的提示样式,还有其他的name可以参考帮助文档 
        $("#huangbiao2").qtip({ 
            content: '使用插件自定义的样式', 
            style: {  
                name: 'green' // Notice the corner value is identical to the previously mentioned positioning corners 
            } 
        }); 
         
        //target:表示提示信息显示在控件的什么位置 
        //tooltip: 
        $("#huangbiao3").qtip({ 
            content: 'Stems are great for indicating the context of the tooltip.', 
            position: { 
                corner: { 
                    target: 'topLeft', 
                    tooltip: 'bottomLeft' 
                } 
            } 
        }); 
         
        $("#huangbiao4").qtip({ 
            content: '', 
        }); 
         
        //show 是指显示的情况,when是指什么事件触发让它显示出来,hide与show对应 
        //solo: 
        $("#huangbiao5").qtip({ 
            content: '', 
            show:{ 
                when:'click', 
                solo:false 
            }, 
            hide:{ 
                when:'click', 
                solo:false 
            } 
        }); 
         
        //显示类似于“窗口”模式的样式,含有title和内容的提示信息 
        $("#huangbiao6").qtip({ 
            content: {   
                title: {   
                    text: 'content-title-text',   
                    button: 'button'   
                },   
                text: 'content-text'   
            }, 
            fixed:true 
        }); 
         
        //api:是回调函数,beforeShow是在显示提示之前的提示信息,beforeHide则恰好相反;onRender是指内容呈现后调用 
        $("#huangbiao7").qtip({ 
            content: 'use callback function', 
            api:{ 
                beforeShow:function(){ 
                    alert("beforeShow api function"); 
                },   
                beforeHide:function(){ 
                    alert("beforeHide api function"); 
                } 
            } 
        }); 
         
        $("#huangbiao9").qtip({ 
            content: '', 
            style:{ 
                width:"1024px", 
                height:"1024px", 
                background:"black" 
            } 
        }); 
    }    
); 
 
无标题文档 
 
    显示普通文字
 
   

 
    设置显示文字样式

 
   

 
    使用插件自定义的样式

 
   

 
    设置提示的显示位置

 
   

 
    显示图片

 
   

 
    点击事件显示以及隐藏提示

 
   

 
    含有标题的提示信息

 
   

 
    使用回调函数

 
   

 
    遮盖全屏 
 
 
 


    
 
 

您可能感兴趣的文章:

  • jquery插件jquery倒计时插件分享
  • jQuery图片轮换插件 jQuery Dynamic Slideshow
  • jquery上传插件fineuploader上传文件使用方法(jquery图片上传插件)
  • jQuery 内容滑动插件 Basic jQuery Slider
  • jQuery消息提醒插件 jQuery Notty iis7站长之家
  • jQuery右键菜单插件 jQuery ContextMenu
  • jQuery日历插件 jQuery Week Calendar
  • jQuery实现CSS3动画效果的插件 jQuery Transit
  • jQuery消息提醒插件 jQuery Notty
  • jQuery无限幻灯片插件 jQuery Carousel
  • jQuery多值输入插件 jQuery Manifest
  • jQuery向导插件 Jquery Wizard Plugin
  • jQuery相册插件 jQuery.popeye
  • jQuery的中文日历插件 jQuery.datePickerCn
  • jQuery的气泡提示插件 jquery.ns_bub.js
  • jQuery对话框插件 jquery.modalbox
  • jQuery的OpenSocial插件 OpenSocial jQuery
  • jQuery链接插件 jquery.biggerlink
  • 在线客服jQuery 插件 jQuery.onServ
  • jQuery日历插件 jQuery Verbose Calendar
  • jquery使用jquery.zclip插件复制对象的实例教程
  • JQuery验证特殊字符实例
  • jquery检验实例-改变错误提示信息的位置
  • textarea显示成label的样式 jquery实例
  • jQuery实现回车键(Enter)切换文本框焦点的代码实例
  • jquery修改属性值实例代码(设置属性值)
  • Jquery each方法跳出循环,并获取返回值(实例讲解)
  • jquery等宽输出文字插件的实例代码
  • jquery 回车事件的实例分享
  • jquery 获取dom固定元素 添加样式的简单实例
  • Jquery 获取元素位置序号的实例代码
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Jquery easyui入门教程(1)
  • jquery 淡入淡出效果入门例子
  • jquery 追加tr和删除tr(新手入门)
  • jQuery入门-hello Jquery
  • jQuery记录之jquery入门学习笔记
  • jQuery入门-使用tablesorter插件(表格排序)
  • jQuery入门-使用FX
  • jQuery入门-使用AJAX
  • jQuery入门-使用选择器和事件
  • jQuery入门-制作自己的插件
  • 通过javascript库JQuery实现页面跳转功能代码
  • jQuery鼠标动画插件 jquery-ahover
  • jQuery概述,代码举例及最新版下载
  • jQuery UI组件 jQuery UI
  • Jquery操作html复选框checkbox:全选,全不选和反选
  • jQuery分页插件 Pagination jQuery Plugin
  • struts+spring+hibernate+jquery实现分页功能的几个基本类介绍(异步加载)
  • jQuery的CSV插件 jQuery CSV
  • jQuery气泡提示插件 jquery-rollover-tooltip
  • jQuery对话框 jQuery Modal Dialog
  • jQuery 插件 jQuery Ripples
  • 精简版的jQuery jQuery.ish
  • jQuery虚拟键盘 jQuery Keypad
  • jQuery滚动效果插件 jQuery.SerialScroll
  • jQuery电子表格插件 jQuery.sheet
  • jQuery日期选择插件 jQuery UI Datepicker
  • jQuery分页插件 jQuery Pagination
  • jQuery表单验证插件 jQuery.validity
  • jQuery条形码插件 jQuery Barcode
  • jQuery 星级评分插件 jQuery Raty
  • jQuery动态背景插件 jQuery.spritely


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3