我用photoshop在背景圖片上疊加了徽標。我有背景圖片設置,它是響應。我設置了一個圖像地圖,以將該圖標用作主頁面鏈接。我在網站的其他兩個頁面上運行良好,但由於背景圖像的設置方式,此頁面不同。我認爲我可以通過使用透明圖像和usemap一起玩。不工作。當我將鼠標懸停在圖像地圖上時,我能夠看到手,但是那裏沒有標識。網址是http://jandswebsitedesigns.com/test/index.html。左上角的徽標示例爲http://jandswebsitedesigns.com/test/im-new-here.html。我在im-new-here頁面有類似的問題。位於圖像上部頂部的「頂部」div(透明)覆蓋可點擊區域。塞繆爾迴應,我添加了div#top-bar {height:0px; }它修復了它。很好地工作,但同樣的修復在這裏不起作用。徽標未出現在背景圖片上的問題
<style>
body {
background: url(images/cd-background-1.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position: relative;
min-height: 100%;
z-index: 1; }
</style>
<div style="text-align: center; height: 800px;">
<img src="images/trans.png" usemap="#logomap">
<map name="logomap">
<area shape="poly" coords="11,2,430,3,432,307,3,320"
style="outline:none;" href="index.html" alt="main page">
</map>
</div>
這應該是什麼?你能解釋一下這段代碼怎麼做? –
不確定你的意思是.my-div。那麼html代碼呢? –