1、透明度与线条样式

  1. <style>
  2. polyline{
  3. stroke: blueviolet;
  4. stroke-width: 10px;
  5. stroke-opacity: 0.5;/* 边框透明度 */
  6. fill-opacity: 0.3;/* 填充透明度 */
  7. stroke-linecap: round;/* 两端变圆 */
  8. stroke-linejoin: round;/* 两条线相交的地方的图形变化 */
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <svg width="500px" height="300px" style="border: 1px solid">
  14. <polyline points="0 0,50 50,50 100,100 100,100 50"></polyline>
  15. <text x="300" y="50">邓哥身体好</text>
  16. </svg>
  17. </body>