网站主页JS动画停止从另一页返回

时间:2018-05-26 23:05:25

标签: javascript html css animation typewriter

我在我的主页上插入了一个简单的打字机动画,其中包含来自此处的代码,只需进行少量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>

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

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

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

1 个答案:

答案 0 :(得分:0)

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

另外一般情况下,请避免使用javascript动画,仅使用css。