SVG中的<desc>元素用於為任何可用的SVG元素提供可訪問的文本描述,無論它是容器還是圖形元素。
用法:
<desc></desc>
屬性值:它沒有任何屬性值。
下麵給出的是上麵給出的函數的一些示例。
範例1:當在desc內的文本在圓元素中給出時。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
path1tent="width=device-width,
initial-scale=1.0">
<title>Document</title>
</head>
<style>
svg{
width:200px;
height:200px;
color:#ffffff;
background-color:green;
}
</style>
<body>
<svg>
<circle cx="100"
cy="100"
r="80">
<desc>
Geeks for geeks
</desc>
</circle>
</svg>
</body>
</html>
輸出:請注意,文本未顯示在輸出中。
範例2:當desc內的文本在矩形元素中給出時。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
path1tent="width=device-width,
initial-scale=1.0">
<title>Document</title>
</head>
<style>
svg{
width:200px;
height:200px;
color:black;
background-color:green;
}
</style>
<body>
<svg>
<rect aria-describedby="info"
width="180" height="100"
x="10"
y="50"
fill="white"
stroke="black">
<desc id="info">
Geeks for geeks
</desc>
</rect>
</svg>
</body>
</html>
輸出:
相關用法
- SVG <marker>用法及代碼示例
- SVG <a>用法及代碼示例
- SVG <clipPath>用法及代碼示例
- SVG <title>用法及代碼示例
- SVG <animateMotion>用法及代碼示例
- SVG <animate>用法及代碼示例
- SVG <g>用法及代碼示例
- SVG <textPath>用法及代碼示例
- SVG <tspan>用法及代碼示例
- SVG <use>用法及代碼示例
- SVG <symbol>用法及代碼示例
- SVG <foreignObject>用法及代碼示例
- SVG <hatch>用法及代碼示例
- SVG <set>用法及代碼示例
- SVG <feFlood>用法及代碼示例
- SVG <feBlend>用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 SVG <desc> element。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。