@peccul is peccu

(love peccu '(emacs lisp cat outdoor bicycle mac linux coffee))

egg.js 簡単にイースターエッグをWebサイトに仕込める

Twitterのサイトにもあるような、秘密のコマンドでなにかをする実装を簡単に書けます。

github.com

コナミコマンドの例がREADMEに載っているので転記します。

var egg = new Egg();
egg
  .addCode("up,up,down,down,left,right,left,right,b,a", function() {
    jQuery('#egggif').fadeIn(500, function() {
      window.setTimeout(function() { jQuery('#egggif').hide(); }, 5000);
    }, "konami-code");
  })
  .addHook(function(){
    console.log("Hook called for: " + this.activeEgg.keys);
    console.log(this.activeEgg.metadata);
  })
  .listen();