├── README.md ├── css └── style.css ├── favicon.ico ├── img ├── bjm11.png ├── bjm22.png └── ji.png ├── index.html ├── js └── index.js ├── media └── j.mp3 └── res ├── ay.mp3 ├── bbj.mp3 ├── djh.mp3 ├── djj.mp3 ├── esj.mp3 ├── hh.mp3 ├── hxj.mp3 ├── j.mp3 ├── jhj.mp3 ├── jjj.mp3 ├── jnj.mp3 ├── jntm.mp3 ├── jtm.mp3 ├── lq.mp3 ├── m.mp3 ├── ma.mp3 ├── mck.mp3 ├── mrj.mp3 ├── n.mp3 ├── ngm.mp3 ├── ngmhhy.mp3 ├── nhf.mp3 ├── qm.mp3 ├── rp.mp3 ├── rup.mp3 ├── t.mp3 ├── thj.mp3 ├── ws.mp3 ├── xjj.mp3 ├── xnj.mp3 ├── xxj.mp3 ├── yhhmgn.mp3 ├── yyj.mp3 ├── zdj.mp3 ├── 三国鸡.mp3 ├── 卡点鸡.mp3 ├── 印度鸡.mp3 ├── 各种鸡.mp3 ├── 听鸡话.mp3 ├── 哇呵呵.mp3 ├── 哇真的是你.mp3 ├── 哈哈哈.mp3 ├── 哎呀.mp3 ├── 唱.mp3 ├── 啊~.mp3 ├── 喜欢.mp3 ├── 圣诞鸡.mp3 ├── 坤坤.mp3 ├── 大悲鸡.mp3 ├── 好运鸡.mp3 ├── 小母鸡.mp3 ├── 新闻鸡.mp3 ├── 春节鸡.mp3 ├── 果宝鸡.mp3 ├── 狂放鸡.mp3 ├── 祝福鸡.mp3 ├── 起鲲了.mp3 ├── 跳.mp3 └── 青蛙鸡.mp3 /README.md: -------------------------------------------------------------------------------- 1 | ### Jilehe 鸡乐盒 2 | 3 |   |  🌎 访问DEMO  |   4 | 5 | 原ikun.ee域名到期后未续费,已停止使用,将来此域名关联网站任何内容均与作者无关。 6 | 7 | 此项目下载后可直接在本地使用,无需联网。 8 | 9 | 代码、音频均来自网络收集,请勿直接用于商业用途。 10 | 11 | 投诉建议请通过Issue提出。 12 | 13 | 本项目仅供娱乐,请勿用于恶意攻击他人! 14 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | audio::-webkit-media-controls { 2 | overflow: hidden !important 3 | } 4 | 5 | audio::-webkit-media-controls-enclosure { 6 | width: calc(100% + 32px); 7 | margin-left: auto 8 | } 9 | 10 | #main { 11 | width: 390px; 12 | margin: 0 auto 13 | } 14 | 15 | #main .top { 16 | position: relative 17 | } 18 | 19 | #main .top .name { 20 | color: #fff; 21 | font-size: 22px; 22 | text-align: center; 23 | position: absolute; 24 | width: 100%; 25 | padding-top: 22px; 26 | font-family: 微软雅黑 27 | } 28 | 29 | #main .top .bg1 { 30 | height: 70px; 31 | background-image: url(../img/bjm11.png); 32 | background-repeat: no-repeat, repeat; 33 | background-size: 100% 100% 34 | } 35 | 36 | #main .top .bg2 { 37 | height: 80px; 38 | background-image: url(../img/bjm22.png); 39 | background-repeat: no-repeat, repeat; 40 | background-size: 100% 100% 41 | } 42 | 43 | #main .top .ji { 44 | width: 90%; 45 | height: 90%; 46 | box-sizing: border-box; 47 | position: absolute; 48 | top: 50%; 49 | left: 10px; 50 | right: 10px; 51 | margin: auto; 52 | background-image: url(../img/ji.png); 53 | background-repeat: no-repeat, repeat; 54 | background-clip: border-box; 55 | background-size: 100% 100%; 56 | border-radius: 15px 57 | } 58 | 59 | #main .ctrl { 60 | border-radius: 15px; 61 | background-color: #fff; 62 | margin: 80px 20px; 63 | margin-bottom: 0; 64 | padding: 20px 65 | } 66 | 67 | #main .ctrl .gongneng { 68 | font-family: 微软雅黑; 69 | width: 100%; 70 | margin-bottom: 15px 71 | } 72 | 73 | #main .ctrl .gongneng span { 74 | font-weight: bold 75 | } 76 | 77 | #main .ctrl .gongneng .s { 78 | float: right; 79 | width: 110px; 80 | display: flex; 81 | justify-content: space-between 82 | } 83 | 84 | #main .ctrl .gongneng .s .s1, 85 | #main .ctrl .gongneng .s .s2 { 86 | width: 50px; 87 | height: 30px; 88 | line-height: 30px; 89 | border-radius: 10px; 90 | background-color: rgb(33, 235, 110); 91 | text-align: center; 92 | font-size: 13px 93 | } 94 | 95 | #main .ctrl ul.jj { 96 | list-style: none; 97 | display: -webkit-flex; 98 | display: flex; 99 | justify-content: space-between; 100 | flex-wrap: wrap 101 | } 102 | 103 | #main .ctrl ul.jj li { 104 | width: 70px; 105 | height: 50px; 106 | line-height: 50px; 107 | font-size: 13px; 108 | background-color: rgb(30, 190, 142); 109 | text-align: center; 110 | margin: 3px; 111 | padding: 0; 112 | border-radius: 10px; 113 | cursor: pointer; 114 | } 115 | 116 | #main .ctrl ul.jj li.sange { 117 | width: 90px 118 | } 119 | 120 | #main .ctrl .help { 121 | border-radius: 15px; 122 | background-color: #eee; 123 | margin-top: 20px; 124 | padding: 10px 20px 125 | } 126 | 127 | #main .ctrl .help .title { 128 | font-weight: bold 129 | } 130 | 131 | #main .ctrl .help ul { 132 | list-style-type: none 133 | } 134 | 135 | #main .ctrl .help ul li { 136 | margin: 15px 0 137 | } -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/favicon.ico -------------------------------------------------------------------------------- /img/bjm11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/img/bjm11.png -------------------------------------------------------------------------------- /img/bjm22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/img/bjm22.png -------------------------------------------------------------------------------- /img/ji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/img/ji.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 鸡乐盒 Plus 10 | 33 | 34 | 35 | 36 |
37 |
38 |
鸡乐盒 Plus
39 |
40 |
41 |
42 |
43 |
44 |
音效区域 45 |
46 |
开头
47 |
停止
48 |
49 |
50 | 114 |
115 |
使用帮助
116 |
    117 |
  • 音频来自网络,未经原作者授权请勿商用。
  • 118 |
  • 代码已在Github开源,点我跳转
  • 119 |
  • 点击按钮就会发出只因声。
  • 120 |
  • 喜欢的话可以分享给身边的ikun!
  • 121 |
122 |
123 |
124 |
125 | 126 | 127 | 128 | -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- 1 | var audio = document.getElementById('audio'); 2 | audio.play(); 3 | var lis = document.querySelectorAll('ul.jj li'); 4 | lis.forEach(li => { 5 | li.onclick = function() { 6 | audio.src = './res/' + this.getAttribute('m') + '.mp3'; 7 | audio.play(); 8 | console.log(this.innerHTML) 9 | } 10 | }); 11 | document.querySelector('.s1').onclick = function() { 12 | audio.currentTime = 0; 13 | console.log('重开') 14 | }; 15 | document.querySelector('.s2').onclick = function() { 16 | audio.pause(); 17 | console.log('停止') 18 | } -------------------------------------------------------------------------------- /media/j.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/media/j.mp3 -------------------------------------------------------------------------------- /res/ay.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/ay.mp3 -------------------------------------------------------------------------------- /res/bbj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/bbj.mp3 -------------------------------------------------------------------------------- /res/djh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/djh.mp3 -------------------------------------------------------------------------------- /res/djj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/djj.mp3 -------------------------------------------------------------------------------- /res/esj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/esj.mp3 -------------------------------------------------------------------------------- /res/hh.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/hh.mp3 -------------------------------------------------------------------------------- /res/hxj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/hxj.mp3 -------------------------------------------------------------------------------- /res/j.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/j.mp3 -------------------------------------------------------------------------------- /res/jhj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/jhj.mp3 -------------------------------------------------------------------------------- /res/jjj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/jjj.mp3 -------------------------------------------------------------------------------- /res/jnj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/jnj.mp3 -------------------------------------------------------------------------------- /res/jntm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/jntm.mp3 -------------------------------------------------------------------------------- /res/jtm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/jtm.mp3 -------------------------------------------------------------------------------- /res/lq.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/lq.mp3 -------------------------------------------------------------------------------- /res/m.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/m.mp3 -------------------------------------------------------------------------------- /res/ma.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/ma.mp3 -------------------------------------------------------------------------------- /res/mck.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/mck.mp3 -------------------------------------------------------------------------------- /res/mrj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/mrj.mp3 -------------------------------------------------------------------------------- /res/n.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/n.mp3 -------------------------------------------------------------------------------- /res/ngm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/ngm.mp3 -------------------------------------------------------------------------------- /res/ngmhhy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/ngmhhy.mp3 -------------------------------------------------------------------------------- /res/nhf.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/nhf.mp3 -------------------------------------------------------------------------------- /res/qm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/qm.mp3 -------------------------------------------------------------------------------- /res/rp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/rp.mp3 -------------------------------------------------------------------------------- /res/rup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/rup.mp3 -------------------------------------------------------------------------------- /res/t.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/t.mp3 -------------------------------------------------------------------------------- /res/thj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/thj.mp3 -------------------------------------------------------------------------------- /res/ws.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/ws.mp3 -------------------------------------------------------------------------------- /res/xjj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/xjj.mp3 -------------------------------------------------------------------------------- /res/xnj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/xnj.mp3 -------------------------------------------------------------------------------- /res/xxj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/xxj.mp3 -------------------------------------------------------------------------------- /res/yhhmgn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/yhhmgn.mp3 -------------------------------------------------------------------------------- /res/yyj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/yyj.mp3 -------------------------------------------------------------------------------- /res/zdj.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/zdj.mp3 -------------------------------------------------------------------------------- /res/三国鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/三国鸡.mp3 -------------------------------------------------------------------------------- /res/卡点鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/卡点鸡.mp3 -------------------------------------------------------------------------------- /res/印度鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/印度鸡.mp3 -------------------------------------------------------------------------------- /res/各种鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/各种鸡.mp3 -------------------------------------------------------------------------------- /res/听鸡话.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/听鸡话.mp3 -------------------------------------------------------------------------------- /res/哇呵呵.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/哇呵呵.mp3 -------------------------------------------------------------------------------- /res/哇真的是你.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/哇真的是你.mp3 -------------------------------------------------------------------------------- /res/哈哈哈.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/哈哈哈.mp3 -------------------------------------------------------------------------------- /res/哎呀.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/哎呀.mp3 -------------------------------------------------------------------------------- /res/唱.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/唱.mp3 -------------------------------------------------------------------------------- /res/啊~.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/啊~.mp3 -------------------------------------------------------------------------------- /res/喜欢.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/喜欢.mp3 -------------------------------------------------------------------------------- /res/圣诞鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/圣诞鸡.mp3 -------------------------------------------------------------------------------- /res/坤坤.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/坤坤.mp3 -------------------------------------------------------------------------------- /res/大悲鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/大悲鸡.mp3 -------------------------------------------------------------------------------- /res/好运鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/好运鸡.mp3 -------------------------------------------------------------------------------- /res/小母鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/小母鸡.mp3 -------------------------------------------------------------------------------- /res/新闻鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/新闻鸡.mp3 -------------------------------------------------------------------------------- /res/春节鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/春节鸡.mp3 -------------------------------------------------------------------------------- /res/果宝鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/果宝鸡.mp3 -------------------------------------------------------------------------------- /res/狂放鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/狂放鸡.mp3 -------------------------------------------------------------------------------- /res/祝福鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/祝福鸡.mp3 -------------------------------------------------------------------------------- /res/起鲲了.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/起鲲了.mp3 -------------------------------------------------------------------------------- /res/跳.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/跳.mp3 -------------------------------------------------------------------------------- /res/青蛙鸡.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyryblog/Jilehe/f48696be84f88f0b084da1892ffd607a4377bc94/res/青蛙鸡.mp3 --------------------------------------------------------------------------------