围绕另一个元素旋转一个元素 - css

Rotate an element around another element - css

我正在使用 CSS,并且想要制作一个对象围绕椭圆中的另一个对象移动的效果。我没有使用 canvas,这是我的 html:

<div>/*Content intended for ellipse movement*/</div>
<div>/*Element to ellipse around*/</div>

我现在没有css 我该怎么做呢?感谢您的帮助!

你想做这样的事情吗?

body {
  padding: 50px;
}

div {
  position: absolute;
  width: 100px;
  height: 100px;
  background: #9f9;
}

.high {
  background-color: #99f;
  z-index: 1;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
<div class="low"></div>
<div class="high"></div>