今天分享一个简单易用的消息提示插件:poshytip。这是一款基于jQuery的插件,其特点是简单易用,支持浏览器:IE6+, FF 2+, Opera 9+, Safari 3+, Chrome,并且带有六种皮肤的提示框。
demo效果图:
配置参数:
类型(时间单位为毫秒) | 示例 | ||
content | 显示的内容(缺省取值title) | String, DOM element, Function, jQuery |
$('#demo').poshytip({ content: 'Hey, there! This is a tooltip.' }); |
className | 设置提示框的class | String |
$('#demo').poshytip({ className: 'tip-yellow' }); |
bgImageFrameSize | 提示框背景图片的大小 | Number |
$('#demo').poshytip({ className: 'tip-violet', bgImageFrameSize: 9 }); |
showTimeout | 延迟显示时间 | Number |
$('#demo').poshytip({ className: 'tip-violet', bgImageFrameSize: 9, showTimeout: 50 }); |
hideTimeout | 延迟消失时间 | Number |
$('#demo').poshytip({ className: 'tip-violet', bgImageFrameSize: 9, hideTimeout: 50 }); |
timeOnScreen | 自动隐藏之前显示多长时间 | Number |
$('#demo').poshytip({ className: 'tip-violet', bgImageFrameSize: 9, timeOnScreen: 1000 }); //当元素获取到焦点时,提示框显示1秒之后自动隐藏 |
showOn | 触发何种事件显示提示框 | String('hover', 'focus', 'none') |
$('#demo').poshytip({ showOn: 'focus' }); //当获取焦点时显示提示 |
liveEvents | |||
alignTo | 设置箭头位置 | String('cursor', 'target') |
$('#demo').poshytip({ alignTo: 'cursor' }); //设置箭头位置相对于鼠标位置 |
alignX | 水平对齐相对于鼠标光标或目标元素 | String( 'right', 'center', 'left', 'inner-left', 'inner-right') | $('#demo').poshytip({ alignX: 'center' }); |
alignY | 垂直对齐相对于鼠标光标或目标元素 | String( 'bottom', 'center', 'top', 'inner-bottom', 'inner-top') | $('#demo').poshytip({ alignY: 'center' }); |
offsetX | 设置提示框横向偏移 | Number | $('#demo').poshytip({ offsetX: 10 }); |
offsetY | 设置提示框纵向偏移 | Number | $('#demo').poshytip({ offsetY: 10 }); |
keepInViewport | 设置提示始终显示在窗口 | Boolean | $('#demo').poshytip({ keepInViewport: true }); |
allowTipHover | 当鼠标悬在tip上时,不隐藏tip | Boolean | $('#demo').poshytip({ allowTipHover: true }); |
followCursor | 提示跟随光标移动 | Boolean | $('#demo').poshytip({ followCursor: true }); |
fade | 使用fade动画 | Boolean | $('#demo').poshytip({ fade: true }); |
slide | 使用slide动画 | Boolean |
$('#demo').poshytip({ slide: true }); |
slideOffset | slide动画相抵消 | Number | $('#demo').poshytip({ slideOffset: 1000 }); |
showAniDuration | 显示动画时长 | Number | $('#demo').poshytip({ showAniDuration: 1000 }); |
hideAniDuration | 隐藏动画的持续时间 | Number | $('#demo').poshytip({ hideAniDuration: 1000 }); |
refreshAniDuration | 异步更新提示时,动画的持续时间 | Number | $('#demo').poshytip({ refreshAniDuration: 1000 }); |
方法:
.poshytip('show') 显示提示框,前提提示框的alignTo参数被设置为'target'
.poshytip('showDelayed', [ timeout ] ) 设置显示提示框延迟时间
.poshytip('hide') 隐藏提示框
.poshytip('hideDelayed', [ timeout ] ) 设置隐藏提示框延迟时间
.poshytip('update', content, [ dontOverwriteOption ] ) 更新提示框内容
.poshytip('disable') 禁用提示框
.poshytip('enable') 启用提示框
.poshytip('destroy') 彻底销毁提示框
小结:
提示无处不在,更多的提示才能帮助用户轻松的使用产品,不管是表单注册提示、错误提示等等。希望你能够喜欢这款提示插件。
时间: 2024-09-12 23:22:58