我在html页面上设置了背景图像,其中包含以下CSS代码:
html {
background: url("assets/Untitled-2.gif") no-repeat center center fixed;
background-size: cover;
height: 100%;
}

我想为这个gif添加一个图像映射,以便使gif的某些区域可以点击。我知道这可以使用<map>
标签在HTML中完成,我为gif准备了这样的标签。有没有办法可以使用HTML或CSS将此地图应用于背景图像?