QQ截图20200119165214.png
clip-pathCSS属性可以创建一个只有元素的部分区域可以显示的剪切区域。区域内的部分显示,区域外的隐藏。剪切区域是被引用内嵌的URL定义的路径或者外部svg的路径,或者作为一个形状例如circle().。clip-path属性代替了现在已经弃用的剪切clip属性。
image
image
image
语法
/* Keyword values */ clip-path: none; /* <clip-source> values */ clip-path: url(resources.svg#c1); /* <geometry-box> values */ clip-path: margin-box; clip-path: border-box; clip-path: padding-box; clip-path: content-box; clip-path: fill-box; clip-path: stroke-box; clip-path: view-box; /* <basic-shape> values */ clip-path: inset(100px 50px); clip-path: circle(50px at 0 100px); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); clip-path: path('M0.5,1 C0.5,1,0,0.7,0,0.3 A0.25,0.25,1,1,1,0.5,0.3 A0.25,0.25,1,1,1,1,0.3 C1,0.7,0.5,1,0.5,1 Z'); /* Box and shape values combined */ clip-path: padding-box circle(50px at 0 100px); /* Global values */ clip-path: inherit; clip-path: initial; clip-path: unset;
clip-path属性指定为下面列出的值的一个或多个值的组合.
取值
<clip-source>用<url>表示剪切元素的路径<basic-shape>一种形状,其大小和位置由<几何盒>值定义。如果没有指定几何框,则边框将用作参考框<geometry-box>如果同<basic-shape>一起声明,它将为基本形状提供相应的参考框盒。通过自定义,它将利用确定的盒子边缘包括任何形状边角(比如说,被border-radius定义的剪切路径)。几何框盒可以有以下的值中的一个:margin-box使用margin box作为引用框。border-box使用border box作为引用框。padding-box使用padding box作为引用框。content-box使用content box作为引用框。fill-box利用对象边界框作为引用框。stroke-box使用笔触边界框(stroke bounding box)作为引用框view-box使用最近的 SVG 视口(viewport)作为引用框。如果viewBox属性被指定来为元素创建 SVG 视口,引用框将会被定位在坐标系的原点,引用框位于由viewBox属性建立的坐标系的原点,引用框的尺寸用来设置viewBox属性的宽高值。none不创建的剪切路径。
正式语法
<clip-source> | [ <basic-shape> || <geometry-box> ] | nonewhere <clip-source> = <url> <basic-shape> = <inset()> | <circle()> | <ellipse()> | <polygon()> <geometry-box> = <shape-box> | fill-box | stroke-box | view-box
where <inset()> = inset( <length-percentage>{1,4} [ round <'border-radius'> ]? ) <circle()> = circle( [ <shape-radius> ]? [ at <position> ]? ) <ellipse()> = ellipse( [ <shape-radius>{2} ]? [ at <position> ]? ) <polygon()> = polygon( <fill-rule>? , [ <length-percentage> <length-percentage> ]# ) <shape-box> = <box> | margin-box
where <length-percentage> = <length> | <percentage> <shape-radius> = <length-percentage> | closest-side | farthest-side <position> = [ [ left | center | right ] || [ top | center | bottom ] | [ left | center | right | <length-percentage> ] [ top | center | bottom | <length-percentage> ]? | [ [ left | right ] <length-percentage> ] && [ [ top | bottom ] <length-percentage> ] ] <fill-rule> = nonzero | evenodd <box> = border-box | padding-box | content-box
clip-pathdeveloper.mozilla.org图标
google浏览器就可以实时编辑
首先安装image.png
1.
image.png
一定选中带定位的元素
2.
image.png
3.
image.png
4.
image.png
5.
image.png