一款基于jQuery的图片场景标注提示弹窗特效

时间:2023-03-09 01:27:57
一款基于jQuery的图片场景标注提示弹窗特效

今天给大家分享一款基于jQuery的图片场景标注提示弹窗特效,这款实例适合在图片上标注某个物件,单击弹出详情说明,兼容360、FireFox、Chrome、Safari、Opera、傲游、搜狗、世界之窗,不支持IE8及以下浏览器。效果非常不错。效果如下:

一款基于jQuery的图片场景标注提示弹窗特效

在线预览   源码下载

实现的过程。

这款实例要引用jquery和jquery ui库,还有一个实现的main.js库。需上的朋友可以点击上现的下载按钮下载来看看。

html代码部分:

  1. <div class="container">
  2. <div class="labels">
  3. <a id="label1" class="label" href="#">Sofa
  4. <p>
  5. A sofa, is an item of furniture designed to seat more than one person, and providing
  6. support for the back and arms.</p>
  7. <span /></a><a id="label2" class="label" href="#">Television
  8. <p>
  9. Television (TV) is a telecommunication medium for transmitting and receiving moving
  10. images that can be monochrome (black-and-white) or colored, with or without accompanying
  11. sound.</p>
  12. <span /></a><a id="label3" class="label" href="#">Carpet
  13. <p>
  14. Carpet is a textile floor of an upper layer attached to a backing.</p>
  15. <span /></a><a id="label4" class="label" href="#">Chair
  16. <p>
  17. Chair is an item of furniture designed to seat one person, and providing support
  18. for the back and arms.</p>
  19. <span /></a><a id="label5" class="label" href="http://www.5icool.org/">Showcase
  20. <p>
  21. Showcase is used to showcase things at home</p>
  22. <span /></a>
  23. </div>
  24. <div class="description">
  25. <p>
  26. </p>
  27. <a class="close">X</a></div>
  28. </div>