尝试在单击上显示动画。...无法正常工作(JS,HTML,CSS)

发布于 2025-01-26 01:02:50 字数 3488 浏览 4 评论 0原文

我有一个负载元素,要在单击某个按钮的单击中显示。我尝试了各种方法,包括更新可见性和显示,以及在Div OnClick(当前代码)中添加“表演”类别。到目前为止,什么都没有,我很拼命。我真的很感谢任何帮助。谢谢 :)

document.getElementById('text-generate-button').onclick = () => {
  parent.postMessage({
    pluginMessage: {
      type: 'placeholder-frame'
    }
  }, '*')
  const loader = document.getElementById('loader');
  loader.classList.add("show")
}
.loader {
  opacity: 0;
  background: #ffffff;
  /* background: radial-gradient(#222, #000); */
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /* z-index: 99999; */
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

.loader.show {
  background: #ffffff;
  /* background: radial-gradient(#222, #000); */
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /* z-index: 99999; */
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

.loader-inner {
  bottom: 0;
  height: auto;
  left: 0;
  margin: auto;
  position: relative;
  right: 0;
  top: 0;
  width: 100px;
  padding: 8px;
}

.loader-line-wrap {
  animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
  animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
  animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
  animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
  animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: #EB6A6F;
  height: 90px;
  width: 90px;
  top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
  border-color: #F6BA48;
  height: 76px;
  width: 76px;
  top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
  border-color: #B5D643;
  height: 62px;
  width: 62px;
  top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
  border-color: #50CFD4;
  height: 48px;
  width: 48px;
  top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
  border-color: #9665D4;
  height: 34px;
  width: 34px;
  top: 35px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
<div class="footer">
  <div class="loader">
    <div class="loader-inner">
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
    </div>
  </div>

I have a loading element that I want to display on the click of a certain button. I have tried various methods including updating the visibility and display, as well as adding a "show" classList to the div onclick (current code). Nothing has worked so far and I am desperate. I would really appreciate any help. Thanks :)

document.getElementById('text-generate-button').onclick = () => {
  parent.postMessage({
    pluginMessage: {
      type: 'placeholder-frame'
    }
  }, '*')
  const loader = document.getElementById('loader');
  loader.classList.add("show")
}
.loader {
  opacity: 0;
  background: #ffffff;
  /* background: radial-gradient(#222, #000); */
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /* z-index: 99999; */
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

.loader.show {
  background: #ffffff;
  /* background: radial-gradient(#222, #000); */
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  /* z-index: 99999; */
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4);
}

.loader-inner {
  bottom: 0;
  height: auto;
  left: 0;
  margin: auto;
  position: relative;
  right: 0;
  top: 0;
  width: 100px;
  padding: 8px;
}

.loader-line-wrap {
  animation: spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite;
  box-sizing: border-box;
  height: 50px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  transform-origin: 50% 100%;
  width: 100px;
}

.loader-line {
  border: 4px solid transparent;
  border-radius: 100%;
  box-sizing: border-box;
  height: 100px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
}

.loader-line-wrap:nth-child(1) {
  animation-delay: -50ms;
}

.loader-line-wrap:nth-child(2) {
  animation-delay: -100ms;
}

.loader-line-wrap:nth-child(3) {
  animation-delay: -150ms;
}

.loader-line-wrap:nth-child(4) {
  animation-delay: -200ms;
}

.loader-line-wrap:nth-child(5) {
  animation-delay: -250ms;
}

.loader-line-wrap:nth-child(1) .loader-line {
  border-color: #EB6A6F;
  height: 90px;
  width: 90px;
  top: 7px;
}

.loader-line-wrap:nth-child(2) .loader-line {
  border-color: #F6BA48;
  height: 76px;
  width: 76px;
  top: 14px;
}

.loader-line-wrap:nth-child(3) .loader-line {
  border-color: #B5D643;
  height: 62px;
  width: 62px;
  top: 21px;
}

.loader-line-wrap:nth-child(4) .loader-line {
  border-color: #50CFD4;
  height: 48px;
  width: 48px;
  top: 28px;
}

.loader-line-wrap:nth-child(5) .loader-line {
  border-color: #9665D4;
  height: 34px;
  width: 34px;
  top: 35px;
}

@keyframes spin {
  0%,
  15% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
<div class="footer">
  <div class="loader">
    <div class="loader-inner">
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
      <div class="loader-line-wrap">
        <div class="loader-line"></div>
      </div>
    </div>
  </div>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏日浅笑〃 2025-02-02 01:02:50

我没有深入挖掘是否有更好的方法
但是您可以做的一件事是在您的html集合中

<div class="loader" id="loader>

,在您的JS中

 loader.classList.toggle("loader")

是运行版本: https://jsbin.com/boromararugo/edit?html.css,js,output

应该有更清洁的方法

I didn't dig deep whether there is a better way
but one thing you can do is in your HTML set

<div class="loader" id="loader>

and in your JS

 loader.classList.toggle("loader")

here is running version : https://jsbin.com/boromarugo/edit?html,css,js,output

there should be cleaner way but you get the idea

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文