HTML背景图像映射

jku*_*ner 4 html image map

是否可以从背景图像创建图像映射?我希望屏幕的两侧可以点击,如果没有地图,我看不到任何方法可以实现这一点.

Dan*_*llo 6

您可能希望使用透明的固定浮动<a>锚标记,如下所示:

<a style="display: scroll; position: fixed; top: 25px; left: 0px; width: 20px; height: 20px;" href="#"></a>

<a style="display: scroll; position: fixed; top: 25px; right: 0px; width: 20px; height: 20px;" href="#"></a>
Run Code Online (Sandbox Code Playgroud)

您可能希望使用该bottom属性而不是top相对于窗口底部定位标记.