jQuery悬停文字提示框插件jquery.tooltipster.js用法示

这篇文章主要介绍了jQuery悬停文字提示框插件jquery.tooltipster.js用法,涉及jQuery文字提示框插件的引入与调用实现技巧,非常简单实用,需要的朋友可以参考下

本文实例讲述了jQuery悬停文字提示框插件jquery.tooltipster.js用法。分享给大家供大家参考,具体如下:

运行效果截图如下:

jQuery悬停文字提示框插件jquery.tooltipster.js用法示

index.html页面:

<!DOCTYPE html> <html lang="en"> <head> <title>jQuery Tooltips悬停文字提示框效果</title> <meta charset="utf-8" /> <link type="text/css" href="https://www.jb51.net/css/tooltipster.css" /> <link type="text/css" href="https://www.jb51.net/css/style2.css" /> <script type="text/javascript" src="https://www.jb51.net/js/jquery-2.0.0.min.js"></script> <script type="text/javascript" src="https://www.jb51.net/js/jquery.tooltipster.js"></script> <script type="text/javascript"> $(document).ready(function() { $('.tooltip').tooltipster(); }); </script> </head> <body> <br><br><br><br><br><br><br><br> <section> <ul> <a href="https://www.jb51.net/" target="_blank"><span title="jb51.net">jb51.net</span></a> </ul> </section> <section> <ul> <a href="https://www.jb51.net/" target="_blank"><span title="JS脚本代码">JS脚本代码</span></a> </ul> </section> <section> <ul> <a href="https://www.jb51.net/" target="_blank"><span title="jQuery">jQuery</span></a> </ul> </section> <section> <ul> <a href="https://www.jb51.net/" target="_blank"><span title="JS脚本代码">JS脚本代码</span></a> </ul> </section> <section> <ul> <a href="https://www.jb51.net/"><span title="CSS3">CSS3</span></a> </ul> </section> </center> <section> <ul> <a href="https://www.jb51.net/" target="_blank"><span title="HTML5">HTML5</span></a> </ul> </section><br> <br> <br> <br> <br> </body> </html>

完整实例代码点击此处本站下载

更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery拖拽特效与技巧总结》、《jQuery表格(table)操作技巧汇总》、《jquery中Ajax用法总结》、《jQuery常见经典特效汇总》、《jQuery动画与特效用法总结》及《jquery选择器用法总结

希望本文所述对大家jQuery程序设计有所帮助。

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzsyxd.html