Skip to content
Advertisement

How to move an object over half-circle from start to end?

I have a half-circle (green) and an object (blue). I want to move that object on that circle from start (left) to end (right). The object should follow the path (black) of the half-circle.

enter image description here

Object should move based on specific value. Value is a number from 0 to 1. Start = 0, end = 1.

My current solution:

  • translate the value to percentages by multiplying it by 100. So, 0 = 0%, 0.5 = 50%, 1 = 100%
  • the object is an absolute element which is placed inside relative container
  • half circle also placed inside relative container, but it is not absolute
  • the object will be moved using CSS left and bottom, initial values are 0%
  • first half of the half-circle is a 0-49%, second half is a 50-100%
  • I’m also using padding for the half-circle and translate for the object. padding only needed for nice look and doesn’t actually affects at solution. translate is necessary for right position of left and bottom that are relative to “relative container”

enter image description here

I figured out how to move the object over Y-axis:

JavaScript

But I can’t figure how to correctly move over X-axis. At the moment I have this:

JavaScript

Which gives me this result:

enter image description here

So, how to correctly move the object over X-axis? Or maybe there is a better solution for both X- and Y-axis?

Please note:

  • most likely it should be JavaScript-dependent solution, not CSS only. I need to have control over value. I will set it manually and will update it manually. Sometimes there will be no animation at all because I will not iterate from 0 to 1, but set it only once.
  • I need to interact with these two <svg> elements, not create my own elements. The reason is that every <svg> have linear gradient fill, and it can’t be done correctly with border.

Here is snippet of my current solution:

JavaScript
JavaScript
JavaScript

Note about solution.

I used Temani Afif solution, but with little modification. In the question I pointed that I need to keep these two <svg> elements. So, I set div.arc border color to transparent, remove unnecessary :before, :after. Set div.arc to position: relative and my children <svg> as position: absolute. After alignment it looks like the object moving over the <svg> element, but actually it moving over div.arc.

Advertisement

Answer

What about a CSS only and easier solution:

JavaScript
JavaScript

Using CSS variables to control the value:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement