Jump to content
Search Community

MariusM

Members
  • Posts

    3
  • Joined

  • Last visited

Posts posted by MariusM

  1. In this code the RED box is tracking the path. I have various SVG images with much more information. So i'm struggling to get these images working into the below path. Does GSAP offer a tool for an SVG to track let's say the below path.

     

    <svg width="500" height="300" style="border:2px solid #1eff00;">
    
        <!-- Line to track -->
        <path id="motionpath1" d="M70,100 C 0,300 300,300 400,200 C 520,70 120,-40 70,100" fill="none" stroke="#001aff"
          stroke-width="2" />
      
        <!-- Object -->
        <path d="M-12,12 h48 v-24 h-48 z" fill="red">
      
          <!-- Assign Object to tracking line -->
          <animateMotion dur="99s" repeatCount="indefinite" rotate="auto">
            <mpath xlink:href="#motionpath1" />
          </animateMotion>
      
        </path>
      
      </svg>

     

×
×
  • Create New...