offset-path
The offset-path CSS property specifies a path for an element to follow and determines the element's positioning within the path's parent container or the SVG coordinate system. The path is a line, a curve, or a geometrical shape along which the element gets positioned or moves.
The offset-path property is used in combination with the offset-distance, offset-rotate, and offset-anchor properties to control the position and orientation of the element along a path.
Try it
Syntax
css
/* Default */
offset-path: none;
/* Line segment */
offset-path: ray(45deg closest-side contain);
offset-path: ray(contain 150deg at center center);
offset-path: ray(45deg);
/* URL */
offset-path: url(#myCircle);
/* Basic shape */
offset-path: circle(50% at 25% 25%);
offset-path: ellipse(50% 50% at 25% 25%);
offset-path: inset(50% 50% 50% 50%);
offset-path: polygon(30% 0%, 70% 0%, 100% 50%, 30% 100%, 0% 70%, 0% 30%);
offset-path: path("M 0,200 Q 200,200 260,80 Q 290,20 400,0 Q 300,100 400,200");
/* Coordinate box */
offset-path: content-box;
offset-path: padding-box;
offset-path: border-box;
offset-path: fill-box;
offset-path: stroke-box;
offset-path: view-box;
/* Global values */
offset-path: inherit;
offset-path: initial;
offset-path: revert;
offset-path: revert-layer;
offset-path: unset;
Values
The offset-path takes as it's value an <offset-path> value, a <coord-box> value, or both, or the none keyword. The <offset-path> value is a ray(), a url(), or a <basic-shape> value.
none-
Specifies that the element does not follow any offset path. The
nonevalue is equivalent to the element not having any offset transform. The element's movement in this case is determined by its default position properties, such astopandleft, instead of an offset path. This is the default value. <offset-path>-
A
ray(), aurl(), or a<basic-shape>specifying the geometrical offset path. If omitted, the path shape for the<coord-box>value isinset(0 round X), whereXis the value ofborder-radiusof the element that establishes the containing block.ray()-
Defines a line starting at a set position, of a set length, and extending at the specified angle. The
ray()function accepts up to four parameters – an<angle>, an optional size value, the optional keywordcontain, and an optionalat <position>. url()-
Specifies the URL reference of a shape element with an SVG. The path is the shape of the SVG
<circle>,<ellipse>,<line>,<path>,<polygon>, or<rect>element referenced by theidin theurl()parameter. If the URL does not reference a shape element or is otherwise invalid, the resolved value for the offset path ispath("M0,0")(which is a valid<basic-shape>value). <basic-shape>-
Specifies the offset path as the equivalent path of a CSS basic shape function, such as
circle(),ellipse(),inset(),path(), orpolygon(). For example, if the<basic_shape>is anellipse()function, then the path is the outline of the ellipse, starting at the rightmost point of the ellipse, proceeding clockwise through a full rotation. Forellipse()andcircle(), which accept theat <position>parameter, if the<position>is omitted, the position defaults tocenterunless the element has anoffset-positionspecified. In this case, theoffset-positionvalue is used for theat <position>parameter.
<coord-box>-
Specifies the size information of the reference box containing the path. The reference box is derived from the element that establishes the containing block for this element. This parameter is optional. If not specified, the default value is
border-box. In SVG, the value is treated asview-box. Ifray()or<basic-shape>is used to define the offset path, the<coord-box>value provides the reference box for the ray or the<basic-shape>, respectively. Ifurl()is used to define the offset path, the<coord-box>value provides the viewport and user coordinate system for the shape element, with the origin (0 0) at the top left corner and size being1px.
Description
The offset-path property defines a path an animated element can follow. An offset path is either a specified path with one or multiple sub-paths or the geometry of a not-styled basic shape. The element's exact position on the offset path is determined by the offset-distance property. Each shape or path must define an initial position for the computed value of 0 for offset-distance and an initial direction which specifies the rotation of the object to the initial position.
Early versions of the spec called this property motion-path. It was changed to offset-path because the property describes static positions, not motion.
Formal definition
| Initial value | none |
|---|---|
| Applies to | transformable elements |
| Inherited | no |
| Computed value | as specified |
| Animation type | by computed value type |
| Creates stacking context | yes |
Formal syntax
Examples
Creating an offset-path using box-edge positioning
This example demonstrates using various <coord-box> values in the offset-path property.
css
body {
width: 300px;
height: 200px;
border-radius: 50px;
border: dashed aqua;
border-width: 25px;
padding: 25px;
margin: 50px;
}
.box {
width: 40px;
height: 20px;
animation: move 8000ms infinite ease-in-out;
}
.blueBox {
background-color: blue;
offset-path: border-box;
offset-distance: 5%;
}
.greenBox {
background-color: green;
offset-path: padding-box;
offset-distance: 8%;
}
.redBox {
background-color: red;
offset-path: content-box;
offset-distance: 12%;
}
@keyframes move {
0%,
20% {
offset-distance: 0%;
}
80%,
100% {
offset-distance: 100%;
}
}
In this example, the margin, border, and padding have been purposely given large values to demonstrate the placement of the blue, green, and red rectangles on their respective <coord-box> edges: border-box, padding-box, and content-box.
Result
Animating an element with offset-path
In the CSS code in this example, the offset-path property defines a path that is identical to the <path> element in the SVG. The path of the SVG animation is a line drawing of a house with a chimney.
SVG
The top and bottom halves of the scissors would appear in the top left of the canvas were they not positioned along the starting point of the path defined by offset-path.
html
<svg
xmlns="http://www.w3.org/2000/svg"
width="700"
height="450"
viewBox="350 0 1400 900">
<title>House and Scissors</title>
<rect x="595" y="423" width="610" height="377" fill="blue" />
<polygon points="506,423 900,190 1294,423" fill="yellow" />
<polygon points="993,245 993,190 1086,190 1086,300" fill="red" />
<path
id="house"
d="M900,190 L993,245 V201 A11,11 0 0,1 1004,190 H1075 A11,11 0 0,1 1086,201 V300 L1294,423 H1216 A11,11 0 0,0 1205,434 V789 A11,11 0 0,1 1194,800 H606 A11,11 0 0,1 595,789 V434 A11,11 0 0,0 584,423 H506 L900,190"
fill="none"
stroke="black"
stroke-width="13"
stroke-linejoin="round"
stroke-linecap="round" />
<path
id="firstScissorHalf"
class="scissorHalf"
d="M30,0 H-10 A10,10 0 0,0 -20,10 A20,20 0 1,1 -40,-10 H20 A10,10 0 0,1 30,0 M-40,20 A10,10 1 0,0 -40,0 A10,10 1 0,0 -40,20 M0,0"
transform="translate(0,0)"
fill="green"
stroke="black"
stroke-width="5"
stroke-linejoin="round"
stroke-linecap="round"
fill-rule="evenodd" />
<path
id="secondScissorHalf"
class="scissorHalf"
d="M30,0 H-10 A10,10 0 0,1 -20,-10 A20,20 0 1,0 -40,10 H20 A10,10 0 0,0 30,0 M-40,-20 A10,10 1 0,0 -40,0 A10,10 1 0,0 -40,-20 M0,0"
transform="translate(0,0)"
fill="forestgreen"
stroke="black"
stroke-width="5"
stroke-linejoin="round"
stroke-linecap="round"
fill-rule="evenodd" />
</svg>
css
.scissorHalf {
offset-path: path(
"M900,190 L993,245 V201 A11,11 0 0,1 1004,190 H1075 A11,11 0 0,1 1086,201 V300 L1294,423 H1216 A11,11 0 0,0 1205,434 V789 A11,11 0 0,1 1194,800 H606 A11,11 0 0,1 595,789 V434 A11,11 0 0,0 584,423 H506 L900,190"
);
animation: followpath 4s linear infinite;
}
@keyframes followpath {
to {
offset-distance: 100%;
}
}
Result
Specifications
| Specification |
|---|
| Motion Path Module Level 1 # offset-path-property |
Browser compatibility
BCD tables only load in the browser
See also
offsetoffset-distanceoffset-rotate- SVG <path>
path()- Other demos:
- Examples using various shapes values on Codepen by CSS-Tricks
- Moving a triangle along a curved path on Codepen by Eric Willigers
- Moving a pair of scissors along the shape of a house on Codepen by Eric Willigers
- Moving multiple pairs of eyes on JSFiddle by Eric Willigers