<body>
  <div class="header finisher-header" style="width: 100%; height: 300px;">
    foo bar
  </div>
  hogehoge
</body>
"use strict";
var _cc = (function () {
  function t(t, i) {
    for (var s = 0; s < i.length; s++) {
      var e = i[s];
      (e.enumerable = e.enumerable || !1),
        (e.configurable = !0),
        "value" in e && (e.writable = !0),
        Object.defineProperty(t, e.key, e);
    }
  }
  return function (i, s, e) {
    return s && t(i.prototype, s), e && t(i, e), i;
  };
})();
function _ccc(t, i) {
  if (!(t instanceof i))
    throw new TypeError("Cannot call a class as a function");
}
!(function (t) {
  function i(t, i) {
    var s = Math.tan(0.017453 * Math.abs(t));
    return Math.ceil(i * s);
  }
  function s(t) {
    var i = void 0;
    return /^#([A-Fa-f0-9]{3}){1,2}$/.test(t)
      ? (3 === (i = t.substring(1).split("")).length &&
          (i = [i[0], i[0], i[1], i[1], i[2], i[2]]),
        {
          r: ((i = "0x" + i.join("")) >> 16) & 255,
          g: (i >> 8) & 255,
          b: 255 & i
        })
      : { r: 0, g: 0, b: 0 };
  }
  var e = (function () {
      function t(i, e, h) {
        _ccc(this, t),
          (this.o = h),
          (this.r = s(i)),
          (this.d = this.grd()),
          (this.h = this.grs()),
          (this.s = Math.abs(this.gnfr(this.o.size))),
          this.srpgq(e),
          (this.vx = this.gnfr(this.o.speed.x) * this.grd()),
          (this.vy = this.gnfr(this.o.speed.y) * this.grd());
      }
      return (
        _cc(t, [
          {
            key: "srpgq",
            value: function (t) {
              var i = this.srpiq();
              return 3 === t
                ? ((this.x = i.x + i.halfWidth), void (this.y = i.y))
                : 2 === t
                ? ((this.x = i.x), void (this.y = i.y + i.halfHeight))
                : 1 === t
                ? ((this.x = i.x + i.halfWidth), void (this.y = i.y + i.halfHeight))
                : ((this.x = i.x), void (this.y = i.y));
            }
          },
          {
            key: "srpiq",
            value: function () {
              var t = this.o.c.w / 2,
                i = this.o.c.h / 2;
              return {
                x: Math.random() * t,
                y: Math.random() * i,
                halfHeight: i,
                halfWidth: t
              };
            }
          },
          {
            key: "gnfr",
            value: function (t) {
              if (t.min === t.max) return t.min;
              var i = t.max - t.min;
              return Math.random() * i + t.min;
            }
          },
          {
            key: "grd",
            value: function () {
              return Math.random() > 0.5 ? 1 : -1;
            }
          },
          {
            key: "grs",
            value: function () {
              return this.o.shapes[Math.floor(Math.random() * this.o.shapes.length)];
            }
          },
          {
            key: "gr",
            value: function (t, i) {
              return "rgba(" + t.r + ", " + t.g + ", " + t.b + ", " + i + ")";
            }
          },
          {
            key: "an",
            value: function (t, s, e) {
              this.o.size.pulse &&
                ((this.s += this.o.size.pulse * this.d),
                (this.s > this.o.size.max || this.s < this.o.size.min) &&
                  (this.d *= -1),
                (this.s = Math.abs(this.s))),
                (this.x += this.vx),
                (this.y += this.vy),
                this.x < 0
                  ? ((this.vx *= -1), (this.x += 1))
                  : this.x > s && ((this.vx *= -1), (this.x -= 1)),
                this.y < 0
                  ? ((this.vy *= -1), (this.y += 1))
                  : this.y > e && ((this.vy *= -1), (this.y -= 1)),
                t.beginPath(),
                this.o.blending &&
                  "none" !== this.o.blending &&
                  (t.globalCompositeOperation = this.o.blending);
              var h = this.gr(this.r, this.o.opacity.center),
                n = this.gr(this.r, this.o.opacity.edge),
                a =
                  "c" === this.h
                    ? this.s / 2
                    : "t" === this.h
                    ? 0.577 * this.s
                    : "s" === this.h
                    ? 0.707 * this.s
                    : this.s,
                o = t.createRadialGradient(this.x, this.y, 0.01, this.x, this.y, a);
              o.addColorStop(0, h), o.addColorStop(1, n), (t.fillStyle = o);
              var r = Math.abs(this.s / 2);
              if (
                ("c" === this.h && t.arc(this.x, this.y, r, 0, 6.283185, !1),
                "s" === this.h)
              ) {
                var c = this.x - r,
                  l = this.x + r,
                  u = this.y - r,
                  d = this.y + r;
                t.moveTo(c, d), t.lineTo(l, d), t.lineTo(l, u), t.lineTo(c, u);
              }
              if ("t" === this.h) {
                var v = i(30, r),
                  g = this.y + v;
                t.moveTo(this.x - r, g),
                  t.lineTo(this.x + r, g),
                  t.lineTo(this.x, this.y - 2 * v);
              }
              t.closePath(), t.fill();
            }
          }
        ]),
        t
      );
    })(),
    h = (function () {
      function h(i) {
        var s = this;
        _ccc(this, h),
          (this.c = document.createElement("canvas")),
          (this.x = this.c.getContext("2d")),
          this.c.setAttribute("id", "finisher-canvas"),
          this.gr().appendChild(this.c);
        var e = void 0;
        t.addEventListener(
          "resize",
          function () {
            clearTimeout(e), (e = setTimeout(s.resize.bind(s), 150));
          },
          !1
        ),
          this.init(i),
          t.requestAnimationFrame(this.an.bind(this));
      }
      return (
        _cc(h, [
          {
            key: "gr",
            value: function () {
              var t = document.getElementsByClassName("finisher-header");
              if (!t.length) throw new Error("No .finisher-header element found");
              return t[0];
            }
          },
          {
            key: "resize",
            value: function () {
              var t = this.gr();
              (this.o.c = { w: t.clientWidth, h: t.clientHeight }),
                (this.c.width = this.o.c.w),
                (this.c.height = this.o.c.h);
              var s = i(this.o.skew, this.o.c.w / 2),
                e = "skewY(" + this.o.skew + "deg) translateY(-" + s + "px)";
              this.c.setAttribute(
                "style",
                "position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;-webkit-transform:" +
                  e +
                  ";transform:" +
                  e +
                  ";outline: 1px solid transparent;background-color:rgba(" +
                  this.bc.r +
                  "," +
                  this.bc.g +
                  "," +
                  this.bc.b +
                  ",1);"
              );
            }
          },
          {
            key: "init",
            value: function (t) {
              (this.o = t),
                (this.bc = s(this.o.colors.background)),
                (this.ps = []),
                this.resize(),
                this.cp();
            }
          },
          {
            key: "cp",
            value: function () {
              var i = 0;
              (this.ps = []),
                (this.o.ac =
                  t.innerWidth < 600 && this.o.count > 5
                    ? Math.round(this.o.count / 2)
                    : this.o.count);
              for (var s = 0; s < this.o.ac; s++) {
                var h = s % 4,
                  n = new e(this.o.colors.particles[i], h, this.o);
                ++i >= this.o.colors.particles.length && (i = 0), (this.ps[s] = n);
              }
            }
          },
          {
            key: "an",
            value: function () {
              t.requestAnimationFrame(this.an.bind(this)),
                this.x.clearRect(0, 0, this.o.c.w, this.o.c.h);
              for (var i = 0; i < this.o.ac; i++) {
                this.ps[i].an(this.x, this.o.c.w, this.o.c.h);
              }
            }
          }
        ]),
        h
      );
    })();
  t.FinisherHeader = h;
})(window);

new FinisherHeader({
  count: 94,
  size: {
    min: 2,
    max: 98,
    pulse: 0
  },
  speed: {
    x: {
      min: 0,
      max: 0.4
    },
    y: {
      min: 0,
      max: 0.6
    }
  },
  colors: {
    background: "#441109",
    particles: ["#fbfcca", "#d7f3fe", "#ffd0a7"]
  },
  blending: "overlay",
  opacity: {
    center: 1,
    edge: 0
  },
  skew: -2.8,
  shapes: ["c"]
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.