Mega Code Archive

 
Categories / XML / SVG
 

Displaying Text with Opacity

<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"   "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">  <svg width="100%" height="100%">      <g transform="translate(50,100)">       <text id="horizontalText" x="0" y="0"              fill="red"              font-size="48">             Opacity 1       </text>            <text id="horizontalText" x="0" y="100"              fill="red"              font-size="48"             opacity=".6">             Opacity .6       </text>            <text id="horizontalText" x="0" y="200"              fill="red"              font-size="48"             opacity=".2">             Opacity .2       </text>     </g> </svg>