Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

css

clip-path: 创建裁剪区域,显示区域内的部分。
clip-path: circle(radius at x y) 创建圆形选区 clip-path: ellipse(a b at x y) 创建椭圆(a, b为长短轴,a: x轴上距离中心点的距离, b: y轴上距离中心点的距离) clip-path: polugon(10px 20px, 10px 10px, ....) 创建任意多边形, 参数为点坐标 clip-path: path() 对应svg中的path属性

More