以下のコード例では、独自のカスタム要素である<custelem>
を定義しようとしています。しかし、私もそれにイメージマップを割り当てたいのですが - 決して存在しないように、しかし、以下の私の試みが失敗したFirefoxでのホットスポットの上にマウスオーバー:イメージのusemapをカスタムHTML要素で使用していますか?
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>Test</title>
<script type="text/javascript">
</script>
<style type="text/css">
#myone {
border-color: blue; border-width: 3px; border-style: solid;
display: block;
background-color: #AAA;
/* convert -size 300x300 xc:red red.png */
background: #EFEFEF url(red.png) 50% 50% no-repeat padding-box border-box scroll;
background-size: contain;
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<custelem id="myone" usemap="#TEST"></custelem> <!-- renders the css, but hotspot mouseovers do not work -->
<!-- <img src="red.png" id="myone" usemap="#TEST"></img> <!-- works in FF, but has to have src attribute for mouseovers -->
<map id="TEST" name="TEST">
<area href="javascript:alert('A1')" id="A1" alt="A1 text" shape="rect" coords="50,50,100,100"/>
<area href="javascript:alert('A2')" id="A2" alt="A2 text" shape="rect" coords="150,150,200,200"/>
</map>
</body>
</html>
私は何とかカスタム要素でUSEMAPを使用することができます - CSSを介して、またはJS?
カスタム要素を使用したい任意の理由は? img要素に1pxの透明なgifのsrcを与えると、あなたのカスタム要素と同じようにCSSの背景を持つ 'img'要素をスタイルすることができます。 –