当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML marker-start属性用法及代码示例


marker-start属性在给定形状的可标记元素的起始顶点绘制一个多标记或箭头。除折线和路径外,所有可标记元素的第一个顶点与最后一个顶点相同。在这种情况下,如果marker-start和marker-end的值都不是“none”,则两个标记都将在最后一个顶点上呈现。 marker-start属性仅在路径数据的起始顶点上呈现。 marker-mid属性仅对以下七个元素有效:路径,折线,多边形,线,圆,椭圆和矩形。

用法:

 marker-start = "marker-reference | none"

属性值:该属性接受上面提到和下面描述的两个值。

  • marker-reference:它在元素的起始顶点绘制一个标记。
  • none:它不会在元素的起始顶点添加任何标记。

范例1:下面的代码说明了如何使用值为“ none”的marker-start属性。

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        .geeks { 
            stroke-width:15; 
            stroke:green; 
            fill:none; 
            marker-start:none; 
        } 
    </style> 
</head> 
  
<body> 
    <div class="Container" style=" 
        color:green; text-align:center;"> 
  
        <h1>GeeksforGeeks</h1> 
        <svg> 
            <marker id="Triangle" 
                viewBox="0 0 10 10" refX="0" 
                refY="5" orient="auto"> 
                <path d="M 0 0 L 10 5 L 0 10 z"> 
                </path> 
            </marker> 
            <g class="geeks"> 
                <path d="M 100, 75 C 125,  
                    50 150, 50 175, 75"> 
                </path> 
            </g> 
        </svg> 
    </div> 
</body> 
  
</html>

输出:



范例2:下面的代码说明了如何使用值为marker-reference的marker-start属性。

HTML

<!DOCTYPE html> 
<html> 
  
<head> 
    <style> 
        .geeks { 
            stroke-width:10; 
            stroke:green; 
            fill:none; 
        } 
    </style> 
</head> 
  
<body> 
  
    <div class="Container" style=" 
         color:green; text-align:center;"> 
        <h1>GeeksforGeeks</h1> 
        <svg> 
            <marker id="Triangle" 
                viewBox="0 0 10 10" refX="0" 
                refY="5" orient="auto"> 
                <path d="M 0 0 L 10 5 L 0 10 z"> 
                </path> 
            </marker> 
            <g class="geeks" style= 
                "marker-start:url(#Triangle);"> 
                  
                <path d="M 100, 75 C  
                    125, 50 150, 50 175, 75"> 
                </path> 
            </g> 
        </svg> 
    </div> 
</body> 
  
</html>

输出:

支持的浏览器:

  • Chrome
  • Firefox
  • Edge
  • Opera
  • Safari




相关用法


注:本文由纯净天空筛选整理自thacker_shahid大神的英文原创作品 HTML marker-start Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。