码迷,mamicode.com
首页 > 其他好文 > 详细

poshytip基本使用

时间:2018-06-21 17:23:57      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:rem   tom   aci   获得   数字   date   over   相对   loading   

js基本调用方法

      $("#tips").poshytip({
                content: $this.text(),
                alignTo: ‘target‘,
                alignX: direction,
                alignY: ‘center‘,
                showOn: ‘none‘,
                offsetX: 5
            }).poshytip(‘show‘);

 

服务端调用:通过调用服务端,获得返回数据

$(‘#remote‘).poshytip({ 
    alignY: ‘bottom‘, 
    content: function(updateCallback) { 
        $.get(‘ajax.php?id=1‘,function(msg){ 
            updateCallback(msg); 
        }); 
        return ‘Loading...‘; 
    } 
}); 
 

参数和方法一览表

参数/方法 描述
content 提示工具条中的内容,默认是从元素的title属性中获取。
className 提示工具条的样式
showTimeout 提示工具条出现前的过渡时间
hideTimeout 提示工具条消失的过渡时间
showOn 提示工具条触发方式,有‘hover‘, ‘focus‘, ‘none‘三种方式
alignX 提示工具条出现在水平方向相对当前元素的位置,有‘right‘, ‘center‘, ‘left‘, ‘inner-left‘, ‘inner-right‘
alignY 提示工具条出现在垂直方向相对当前元素的位置,有‘bottom‘, ‘center‘, ‘top‘, ‘inner-bottom‘, ‘inner-top‘
offsetX 相对X方向位移,数字
offsetY 相对Y方向位移,数字
hideTimeout 工具条消失的过渡时间
hideTimeout 工具条消失的过渡时间
hideTimeout 工具条消失的过渡时间
offsetY 相对Y方向位移,数字
allowTipHover 允许鼠标滑向工具条上方
fade 是否使用渐隐渐显动画,true/false
slide 是否使用滑动动画,true/false
方法:show .poshytip(‘show‘),手动触发显示提示工具条
方法:hide .poshytip(‘hide‘),手动触发隐藏提示工具条
方法:disable .poshytip(‘disable‘),手动触发禁用提示工具条
方法:enable .poshytip(‘enable‘),手动触发启用提示工具条

poshytip基本使用

标签:rem   tom   aci   获得   数字   date   over   相对   loading   

原文地址:https://www.cnblogs.com/tanfuchao/p/9209403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!