本文实例讲述了jquery.qtip提示信息插件用法。分享给大家供大家参考,具体如下:
公司要求写一个关于提示信息的效果,在网上查询到了这个插件,感觉很不错,下面是自己学习的内容
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<script src="lib/jquery-1.6.4.min.js" type="text/javascript"></script>
<script type="text/javascript" src="lib/jquery.qtip-1.0.0-rc3.min.js"></script>
<script type="text/javascript">
$(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: '<img src="img/2.jpg">',
});
//show 是指显示的情况,when是指什么事件触发让它显示出来,hide与show对应
//solo:
$("#huangbiao5").qtip({
content: '<img src="img/2.jpg">',
show:{
when:'click',
solo:false
},
hide:{
when:'click',
solo:false
}
});










