我有一張英國地圖,分解成不同的地理區域。我想這樣做是爲了當用戶將鼠標懸停在該部分上時,會出現一些文字。在html/jquery/javascript中選擇堆疊圖像的部分
我的問題是,什麼是讓圖像做到這一點的最佳方式。
我嘗試過的一種方法是在固定大小的畫布內爲每個區域的正確位置創建一個png文件,並帶有完全透明的背景。這可以將所有區域顯示爲一個完整的地圖。但是不允許我在每個圖像部分添加一個句柄,因爲它們堆疊在一起,因此只有最上面的一個可用。
我也試圖在上面放置一個「區域」來嘗試定義一個熱點。然而,這還沒有工作的形狀太複雜......
下面是HTML/CSS標記
<script type="text/javascript">
$(document).ready(function() {
$('#scot').hide();
$('#wales').hide();
$('#scotmap').click(function() {
$('#scot').show();
});
$('#img2').click(function() {
$('#wales').show();
});
});
</script>
<div id="wrapper">
<div id="img1" class="mappiece">
<img src="Images/map/scotland.png" alt="Scotland">
</div>
<div id="img2" class="mappiece">
<img src="Images/map/nw.png" alt="Scotland">
</div>
<div id="img3" class="mappiece">
<img src="Images/map/se.png" alt="Scotland">
</div>
<div id="img4" class="mappiece">
<img src="Images/map/wales.png" alt="Scotland">
</div>
<div id="img5" class="mappiece">
<img src="Images/map/ireland.png" alt="Scotland">
</div>
<div id="img6" class="mappiece">
<img src="Images/map/yarmouth.png" alt="Scotland">
</div>
<div id="img7" class="mappiece">
<img src="Images/map/york.png" alt="Scotland">
</div>
<div id="map" class="mappiece">
<area id="scotmap" shape="poly" coords="76,9,76,50,87,50,87,92,96,92,96,101,105,101,105,132,120,132,120,122,132,124,137,120,151,124,154,128,160,127,163,129,171,125,173,119,164,92,147,76,164,37,144,7" nohref alt="Scotland Map" />
</div>
</div>
<div id="text">
<div id="scot">
<p>Hello Scotland</p>
</div>
<div id="wales">
<p>Hello Wales</p>
</div>
</div>
body{background-color:#fff;}
#wrapper{
width:237px;
height:258px;
position: relative;
}
.mappiece {
position: absolute;
width:237px;
height:258px;
top:0;
left:0;
}
#img1 {
z-index:80;
}
#img2 {
z-index:20;
}
#img3 {
z-index:30;
}
#img4 {
z-index:40;
}
#img5 {
z-index:50;
}
#img6 {
z-index:60;
}
#img7 {
z-index:70;
}
在正確的方向的點,不勝感激。根據鼠標懸停/鼠標/點擊jquery事件,我對這些都可以。這只是我正在努力的圖像處理。
親切的問候
看看http://stackoverflow.com/questions/4546275/selecting-regions-of-an-image-in-a-jquery-wizard/4546453#4546453 –