0
嗨即時通訊工作在一個網站上,每個圖像上映射圖像的圖像滑塊功能。它工作正常,但在移動版本上搞砸了。林想知道是否有任何方式來創建一個新的圖像映射,當在手機上查看,甚至禁用圖像映射。繼承人我的HTML下面。 ive嘗試使用顯示:沒有在@media僅屏幕部分的CSS,它沒有工作。 ive也使用了mattstows響應式圖像地圖插件,也沒有工作。任何幫助都感激不盡!!如何禁用移動設備上的滑塊上的圖像映射
<div class="rslides_container">
<ul class="rslides" id="slider">
<li><img src="images/1.png" usemap="#map1"/>
<map name="map1">
<area shape="rect" coords="10,49,454,323" href="" title="" />
<area shape="rect" coords="509,48,960,322" href="" title=""/>
<area shape="rect" coords="298, 335, 433, 359" href="" title=""/>
<area shape="rect" coords="803, 333, 938, 356" href="" title=""/>
</map>
</li>
<li><img src="images/2.png" usemap="#map1"/>
<map name="map1">
<area shape="rect" coords="10,49,454,323" href="" title="" />
<area shape="rect" coords="509,48,960,322" href="" title=""/>
<area shape="rect" coords="298, 335, 433, 359" href="" title=""/>
<area shape="rect" coords="803, 333, 938, 356" href="" title=""/>
</map>
</li>
<li><img src="images/3.png" usemap="#map1"/>
<map name="map1">
<area shape="rect" coords="10,49,454,323" href="" title="" />
<area shape="rect" coords="509,48,960,322" href="" title=""/>
<area shape="rect" coords="298, 335, 433, 359" href="" title=""/>
<area shape="rect" coords="803, 333, 938, 356" href="" title=""/>
</map>
</li>
</ul>
</div>
我的CSS:如果用戶使用移動瀏覽器和
.rslides {
position: relative;
list-style: none;
overflow: hidden;
width: 100%;
padding: 0;
margin: 0;
}
.rslides li {
position: absolute;
display: none;
width: 100%;
left: 0;
top: 0;
}
.rslides li:first-child {
position: relative;
display: block;
float: left;
}
.rslides img {
display: block;
height: auto;
float: left;
width: 100%;
border: 0;
}
.rslides {
margin: 0 auto;
}
.rslides_container {
position: relative;
}
您好,感謝您的回覆!我在哪裏粘貼此代碼?我需要添加腳本標記 –
我將它添加到腳本標記的頁面,它的工作原理!圖像地圖被刪除!謝謝! –