当前位置: 首页 > 工具软件 > PoshyTip > 使用案例 >

poshytip基本使用

岳鸿畴
2023-12-01

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'),手动触发启用提示工具条

转载于:https://www.cnblogs.com/tanfuchao/p/9209403.html

 类似资料: