offset-distance
Quick Summary for offset-distance
The offset-distance CSS property specifies a position along an offset-path for an element to be placed.
Code Usage for offset-distance
/* Default value */ offset-distance: 0;  /* the middle of the offset-path */ offset-distance: 50%;  /* a fixed length positioned along the path */ offset-distance: 40px;  /* Global values */ offset-distance: inherit; offset-distance: initial; offset-distance: revert; offset-distance: unset; 
More Details for offset-distance

offset-distance

The offset-distance CSS property specifies a position along an offset-path for an element to be placed.

Syntax

/* Default value */ offset-distance: 0;  /* the middle of the offset-path */ offset-distance: 50%;  /* a fixed length positioned along the path */ offset-distance: 40px;  /* Global values */ offset-distance: inherit; offset-distance: initial; offset-distance: revert; offset-distance: unset; 
<length-percentage>

A length that specifies how far the element is along the path (defined with offset-path).

100% represents the total length of the path (when the offset-path is defined as a basic shape or path()).

Formal definition

Initial value0
Applies totransformable elements
Inheritedno
Percentagesrefer to the total path length
Computed valuefor <length> the absolute value, otherwise a percentage
Animation typea length, percentage or calc();

Formal syntax

<length-percentage>

where <length-percentage> = <length> | <percentage>

Examples

Using offset-distance in an animation

The motion aspect in CSS Motion Path typically comes from animating the offset-distance property. If you want to animate an element along its full path, you would define its offset-path and then set up an animation that takes the offset-distance from 0% to 100%.

HTML
<div id="motion-demo"></div> 
CSS
#motion-demo {   offset-path: path('M20,20 C20,100 200,0 200,100');   animation: move 3000ms infinite alternate ease-in-out;   width: 40px;   height: 40px;   background: cyan; }  @keyframes move {   0% {     offset-distance: 0%;   }   100% {     offset-distance: 100%;   } } 
Result

Specifications

Specification
Motion Path Module Level 1 # offset-distance-property

See also

offset offset-anchor offset-path offset-position offset-rotate

Last modified: Aug 12, 2021, by MDN contributors

No Items Found.

Add Comment
Type in a Nick Name here
 
Other Categories in CSS
css
Search CSS
Search CSS by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
The problem with hoarding is you end up living off your reserves. Eventually, you’ll become stale. If you give away everything you have, you are left with nothing. This forces you to look, to be aware, to replenish. . . . Somehow the more you give away, the more comes back to you.
Paul Arden
Random CSS Property

@viewport

Deprecated: This feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes. Avoid using it, and update existing code if possible; see the compatibility table at the bottom of this page to guide your decision. Be aware that this feature may cease to work at any time.
min-height (@viewport) css reference