1

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

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

我现在没有任何 css 我该怎么做?谢谢你的帮助!

4

1 回答 1

1

你想做这样的事情吗?

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>

于 2020-11-20T16:57:35.467 回答