Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <svg viewBox="0 0 100 100" width="100%" height="100%">
  <defs>
    <marker id="start" viewBox="-5 -5 10 10"
            markerWidth="5" markerHeight="5">
      <circle r="4" fill="none" stroke="darkgray"/>
      <text font-size="8" dy="0.4em" 
            text-anchor="middle">S</text>
    </marker>
  </defs>
  <path id="p" d="M50 20
           Q80 0 70 30 T 70 70 T 30 70 T30 30Z"
        fill="none" stroke="gray" 
        marker-start="url(#start)"/>
  <circle r="4" fill="red" fill-opacity="0.7">
    <animateMotion id="forward" 
                   dur="10s" begin="0s"  fill="freeze"
                   keyPoints="0.3;1;0;0.3"
                   keyTimes="0;0.7;0.7;1"
                   calcMode="linear" >
      <mpath xlink:href="#p"/>
    </animateMotion>
    <animateMotion id="backward" 
                   begin="forward.end + 1s"
                   dur="10s" fill="freeze"
                   keyPoints="0.3;0;1;0.3"
                   keyTimes="0;0.3;0.3;1"
                   calcMode="linear" >
      <mpath xlink:href="#p"/>
    </animateMotion>
  </circle>
  <text font-size="5"><textPath xlink:href="#p" startOffset="30%" method="stretch" spacing="auto"><tspan dy="-2">Движение по замкнутому пути, начиная с произвольной его точки .</tspan></textPath>
  
</svg>
<p>В SVG1.1 нет специального способа задать смещение для  <code>&lt;animateMotion&gt;</code>. Однако, вы можете имитировать это поведение с помощью ключевых точек и моментов времени, мгновенно перескакивая с конечного значения на начальное.
</p>
<p>Математика для расчета <code>keyPoints</code> и <code>keyTimes</code> для движения вперед такова:
<code><dl>
  <dt>keyPoints</dt> 
    <dd>(startPosition)</dd>
    <dd>1</dd>
    <dd>0</dd>
    <dd>(startPosition)</dd>
  <dt>keyTimes</dt> 
    <dd>0</dd>
    <dd>(1 - startPosition)</dd>
    <dd>(1 - startPosition)</dd>
    <dd>1</dd>
</dl></code>
Для движения назад она такова:
<code><dl>
  <dt>keyPoints</dt> 
    <dd>(startPosition)</dd>
    <dd>0</dd>
    <dd>1</dd>
    <dd>(startPosition)</dd>
  <dt>keyTimes</dt> 
    <dd>0</dd>
    <dd>(startPosition)</dd>
    <dd>(startPosition)</dd>
    <dd>1</dd>
</dl></code>
  В обоих случаях <code>startPosition</code> &mdash; десятичная дробь от 0 до 1, представляющая собой относительную часть длины пути.  Вам также нужно явно задать <code>calcMode="linear"</code> для ключевых значений, чтобы эффект получился.
  </p>
  <p>Вот если бы еще текст мог переноситься с конца замкнутой траектории в её начало&hellip;</p>
              
            
!

CSS

              
                body, html {
  height: 100%;
}

@media (orientation: landscape) {
  svg {
    height: 100%;
    width: 70%;
    float: right;
    display: block;
  }
}
@media (orientation: portrait) {
  svg {
    height: 70%;
    width: 100%;
    display: block;
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console