html-图像和svg元素

时间:2018-08-13 06:35:37

标签: html css svg

我正在制作交互式地图,但无法在其上放置图像。 .svg地图是在Inkscape上开发的,分为多个区域。

我需要在这些区域放置图片。

我为此编写了一些代码,但仅在Firefox浏览器中有效。当我用鼠标指向该图像时,整个页面开始滞后。在Opera和Chrome浏览器中,该图像以低分辨率显示。

从图中开始到该区域的这段代码包括:

Login-AzureRmAccount
Set-AzureRmContext -SubscriptionID 'XXXXXXXXX-XXXX-XXXX-XXXX-XXXXXXX'
#Get the id of the service principal configured for AKS
$AKS_RESOURCE_GROUP = "DSEU2-AKSRES-SB-DEV-RGP-01"
$AKS_CLUSTER_NAME = "DSEU2-AKSRES-SB-DEV-AKS-01"
$CLIENT_ID=$(az aks show --resource-group $AKS_RESOURCE_GROUP --name     $AKS_CLUSTER_NAME --query "servicePrincipalProfile.clientId" --output tsv)

# Get the ACR registry resource id
$ACR_NAME = "DSWEAKSRESSBDEVACR01"
$ACR_RESOURCE_GROUP = "DSWE-AKSRES-SB-DEV-RGP-01"
$ACR_ID=$(az acr show --name $ACR_NAME --resource-group $ACR_RESOURCE_GROUP --query "id" --output tsv)

#Create role assignment
az role assignment create --assignee $CLIENT_ID --role Reader --scope $ACR_ID

感谢您的帮助。

0 个答案:

没有答案