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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。