markdown Konami代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown Konami代码相关的知识,希望对你有一定的参考价值。

### Setting Up a Konami Feature

```js
// Used for user input keys
keys = []
// Used for the sequence you are listening for
deleteLinkSequence = [38, 38, 40, 40, 13]

// On a keydown event 
$(document).on 'keydown', (e) ->
  // Push the user entered key into the array
	keys.push(e.keyCode)
  
  // Enter will be the final check
	if e.keyCode == 13
	  // String comparison is easier to perform
		if keys.toString() == deleteLinkSequence.toString()
      // Do stuff
    
    //reset the keys
		keys = []
```

以上是关于markdown Konami代码的主要内容,如果未能解决你的问题,请参考以下文章

flex中的konami代码

jQuery Konami代码监听器

html Unicorn Shitting Rainbows - Konami代码开始有趣

在现场尝试了多种解决方案,但均未奏效:在 Konami 代码上播放 <audio>

npm 模块上的无效钩子调用

带有 Javascript 的 Wordpress 插件