jQuery實(shí)現(xiàn)鼠標(biāo)經(jīng)過彈出提示信息的地圖熱點(diǎn)效果
本文實(shí)例講述了jQuery實(shí)現(xiàn)鼠標(biāo)經(jīng)過彈出提示信息的地圖熱點(diǎn)效果。分享給大家供大家參考。具體如下:
這里的jQuery鼠標(biāo)經(jīng)過彈出提示信息地圖熱點(diǎn)效果,很多網(wǎng)站上有用到,送給大家,對(duì)作者表示感謝。
運(yùn)行效果截圖如下:
具體代碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>jQuery地圖熱點(diǎn)效果-鼠標(biāo)經(jīng)過彈出提示信息</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <script src="jquery-1.6.2.min.js" type="text/javascript"></script> <style type="text/css"> .map img { width:496px; height: 415px; } .mapDiv { width:140px; height:61px; padding: 5px; color:#369; background: url('//img.jbzj.com/file_images/article/201508/201587110632401.gif') no-repeat; position:absolute; display: none; word-break:break-all; } </style> <script type="text/javascript"> $(document).ready(function(){ $("area").each(function(){ var $x=-70; var $y=-80; var name=$(this).attr("alt"); $(this).mouseover(function(e){ var index_num=$(this).index(); var dom="<div class='mapDiv'><p>提示消息<span class='name'></span><span class='num'></span></p></div>"; $("body").append(dom); $(".name").text(name); $(".num").text(index_num) $(".mapDiv").css({ top: (e.pageY + $y)+"px", left: (e.pageX + $x)+"px" }).show("fast"); }).mouseout(function(){ $(".mapDiv").remove(); }).mousemove(function(e){ $(".mapDiv").css({ top: (e.pageY + $y)+"px", left: (e.pageX + $x)+"px" }) }); }); }) </script> </head> <body> <div class="map"> <img border="0" usemap="#Map" src="http://img.jbzj.com/file_images/article/201508/201587110854867.png" /> <map name="Map" id="Map"> <area id="beijing" alt="北京" href="forum.php?gid=1" coords="354,140,380,153" shape="rect"> <area id="shanghai" alt="上海" href="forum.php?gid=3" coords="434,246,462,259" shape="rect"> <area id="tianjin" alt="天津" href="forum.php?gid=2" coords="382,168,408,180" shape="rect"> <area id="chongqing" alt="重慶" href="forum.php?gid=4" coords="294,264,320,276" shape="rect"> <area id="hebei" alt="河北" href="forum.php?gid=5" coords="347,174,374,186" shape="rect"> <area id="shanxi" alt="山西" href="forum.php?gid=6" coords="322,186,348,198" shape="rect"> <area id="neimenggu" alt="內(nèi)蒙古" href="forum.php?gid=7" coords="349,110,388,124" shape="rect"> <area id="liaoning" alt="遼寧" href="forum.php?gid=8" coords="406,128,432,140" shape="rect"> <area id="jilin" alt="吉林" href="forum.php?gid=9" coords="427,101,454,115" shape="rect"> <area id="heilongjiang" alt="黑龍江" href="forum.php?gid=10" coords="424,58,464,73" shape="rect"> <area id="jiangsu" alt="江蘇" href="forum.php?gid=11" coords="404,224,417,250" shape="rect"> <area id="zhejiang" alt="浙江" href="forum.php?gid=12" coords="413,265,427,291" shape="rect"> <area id="anhui" alt="安徽" href="forum.php?gid=13" coords="382,236,395,263" shape="rect"> <area id="fujian" alt="福建" href="forum.php?gid=14" coords="399,300,413,327" shape="rect"> <area id="jiangxi" alt="江西" href="forum.php?gid=15" coords="371,286,385,313" shape="rect"> <area id="shandong" alt="山東" href="forum.php?gid=16" coords="373,196,399,208" shape="rect"> <area id="henan" alt="河南" href="forum.php?gid=17" coords="337,228,364,239" shape="rect"> <area id="hubei" alt="湖北" href="forum.php?gid=18" coords="329,258,356,271" shape="rect"> <area id="hunan" alt="湖南" href="forum.php?gid=19" coords="325,294,352,306" shape="rect"> <area id="guangdong" alt="廣東" href="forum.php?gid=20" coords="356,343,382,355" shape="rect"> <area id="guangxi" alt="廣西" href="forum.php?gid=21" coords="302,343,328,355" shape="rect"> <area id="hainan" alt="海南" href="forum.php?gid=22" coords="313,398,340,411" shape="rect"> <area id="sichuan" alt="四川" href="forum.php?gid=23" coords="239,265,265,277" shape="rect"> <area id="guizhou" alt="貴州" href="forum.php?gid=24" coords="283,311,308,324" shape="rect"> <area id="yunnan" alt="云南" href="forum.php?gid=25" coords="225,337,251,349" shape="rect"> <area id="shaanxi" alt="陜西" href="forum.php?gid=26" coords="303,224,316,251" shape="rect"> <area id="gansu" alt="甘肅" href="forum.php?gid=27" coords="179,156,205,168" shape="rect"> <area id="qinghai" alt="青海" href="forum.php?gid=28" coords="174,206,200,218" shape="rect"> <area id="ningxia" alt="寧夏" href="forum.php?gid=29" coords="277,188,290,212" shape="rect"> <area id="xinjiang" alt="新疆" href="forum.php?gid=30" coords="85,140,111,152" shape="rect"> <area id="xizang" alt="西藏" href="forum.php?gid=31" coords="87,249,113,261" shape="rect"> <area id="xianggang" alt="香港" href="forum.php?gid=32" coords="379,358,406,370" shape="rect"> <area id="aomen" alt="澳門" href="forum.php?gid=33" coords="349,371,375,383" shape="rect"> <area id="taiwan" alt="臺(tái)灣" href="forum.php?gid=34" coords="434,322,448,348" shape="rect"> </map> </div> </body> </html>
希望本文所述對(duì)大家的jquery程序設(shè)計(jì)有所幫助。
- jQuery實(shí)現(xiàn)鼠標(biāo)選中文字后彈出提示窗口效果【附demo源碼】
- jQuery實(shí)現(xiàn)頁面點(diǎn)擊后退彈出提示框的方法
- jquery刪除數(shù)據(jù)記錄時(shí)的彈出提示效果
- jQuery實(shí)現(xiàn)的卷簾門滑入滑出效果【案例】
- jQuery實(shí)現(xiàn)下拉菜單動(dòng)態(tài)添加數(shù)據(jù)點(diǎn)擊滑出收起其他功能
- jQuery實(shí)現(xiàn)的淡入淡出與滑入滑出效果示例
- jquery編寫彈出信息提示條并延時(shí)滑出動(dòng)畫實(shí)現(xiàn)示例
相關(guān)文章
jQuery之DOM對(duì)象和jQuery對(duì)象的轉(zhuǎn)換與區(qū)別分析
這篇文章主要介紹了jQuery之DOM對(duì)象和jQuery對(duì)象的轉(zhuǎn)換與區(qū)別分析,對(duì)比分析了DOM對(duì)象和jQuery對(duì)象的原理與用法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-01-01jQuery?獲取與設(shè)置元素屬性的詳細(xì)方法(看完這篇文章就搞明白了)
這篇文章帶領(lǐng)大家熟練掌握?jQuery?的屬性方面的操作,包括固有屬性的獲取與設(shè)置,自定義屬性的獲取與設(shè)置等等,走進(jìn)?jQuery?的更深層次階段,這也是腳本之家小編發(fā)現(xiàn)的一篇比較實(shí)用的文章2023-06-06基于jquery實(shí)現(xiàn)手風(fēng)琴效果
這篇文章主要為大家詳細(xì)介紹了基于jquery實(shí)現(xiàn)手風(fēng)琴效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2022-04-04jquery ui dialog實(shí)現(xiàn)彈窗特效的思路及代碼
這篇文章介紹了jquery ui dialog實(shí)現(xiàn)彈窗特效的思路及代碼,有需要的朋友可以參考一下2013-08-08輕松搞定jQuery+JSONP跨域請(qǐng)求的解決方案
了解了jsonp之后,大家應(yīng)該也都明白了,jsonp主要就是用來實(shí)現(xiàn)跨域的獲取數(shù)據(jù),今天我們就來詳細(xì)探討下如何在實(shí)際中應(yīng)用jsonp實(shí)現(xiàn)跨域2018-03-03jQuery實(shí)現(xiàn)控制文字內(nèi)容溢出用省略號(hào)(…)表示的方法
這篇文章主要介紹了jQuery實(shí)現(xiàn)控制文字內(nèi)容溢出用省略號(hào)(…)表示的方法,涉及jQuery針對(duì)字符串及樣式操作相關(guān)技巧,需要的朋友可以參考下2016-02-02可以浮動(dòng)某個(gè)物體的jquery控件用法實(shí)例
這篇文章主要介紹了可以浮動(dòng)某個(gè)物體的jquery控件,實(shí)例分析了jquery控件實(shí)現(xiàn)頁面浮動(dòng)層的使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下2015-07-07jQuery實(shí)現(xiàn)動(dòng)態(tài)添加和刪除input框?qū)嵗a
這篇文章主要介紹了jQuery實(shí)現(xiàn)動(dòng)態(tài)添加和刪除input框,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-03-03