【问题标题】:Website homepage JS animation stops on returning to it from another page网站主页 JS 动画在从另一个页面返回时停止
【发布时间】:2020-10-08 16:56:00
【问题描述】:

我在我的主页上插入了一个简单的打字机动画,代码来自这里,只对 HTML 进行了少量编辑以个性化内容。

https://codepen.io/hi-im-si/pen/DHoup

    <h5>
  <body>Hi! My name is Kritika. I am</body>
  <a="" class="typewrite" data-period="2000" data-type='[ "designer.", "a creative.", "a storyteller.", "an entrepreneur." ]'>
    <span class="wrap"></span>
  </a>
</h5>

<style>
  body {
  text-align: left;
  text-color:#ce3635;
  margin-top:25%;
}
</style>

<script>
  var TxtType = function(el, toRotate, period) {
        this.toRotate = toRotate;
        this.el = el;
        this.loopNum = 0;
        this.period = parseInt(period, 10) || 2000;
        this.txt = '';
        this.tick();
        this.isDeleting = false;
    };

    TxtType.prototype.tick = function() {
        var i = this.loopNum % this.toRotate.length;
        var fullTxt = this.toRotate[i];

        if (this.isDeleting) {
        this.txt = fullTxt.substring(0, this.txt.length - 1);
        } else {
        this.txt = fullTxt.substring(0, this.txt.length + 1);
        }

        this.el.innerHTML = '<span class="wrap">'+this.txt+'</span>';

        var that = this;
        var delta = 200 - Math.random() * 100;

        if (this.isDeleting) { delta /= 2; }

        if (!this.isDeleting && this.txt === fullTxt) {
        delta = this.period;
        this.isDeleting = true;
        } else if (this.isDeleting && this.txt === '') {
        this.isDeleting = false;
        this.loopNum++;
        delta = 500;
        }

        setTimeout(function() {
        that.tick();
        }, delta);
    };

    window.onload = function() {
        var elements = document.getElementsByClassName('typewrite');
        for (var i=0; i<elements.length; i++) {
            var toRotate = elements[i].getAttribute('data-type');
            var period = elements[i].getAttribute('data-period');
            if (toRotate) {
              new TxtType(elements[i], JSON.parse(toRotate), period);
            }
        }
        // INJECT CSS
        var css = document.createElement("style");
        css.type = "text/css";
        css.innerHTML = ".typewrite > .wrap { border-right: 0.08em solid #fff}";
        document.body.appendChild(css);
    };
</script>

当我第一次登陆网站时,它会循环工作。但在那之后,如果我转到网站的另一个页面,然后按返回按钮、主页图标或主页标签按钮返回主页,动画将停止工作。 (注意 - 切换到另一个选项卡并返回网站根本不会影响动画。)

另外,我无法让动画文本以我想要的颜色显示。

我是编码新手。任何帮助将不胜感激。谢谢!

【问题讨论】:

    标签: javascript html css animation


    【解决方案1】:

    这是已知的浏览器行为。 Javascript 执行在非活动选项卡中减慢。 Read More。您可以将 setTimeout 的增量增加到大约 1000 毫秒或更多,或者使用网络工作者。

    一般情况下,避免使用 javascript 制作动画,仅使用 css。

    【讨论】:

      猜你喜欢
      • 2021-11-24
      • 2017-07-14
      • 2012-02-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-03-31
      相关资源
      最近更新 更多