私は面白いアイデアを持っています(議論の余地があります)。基本的には、jQueryとキーボードからhttps://www.youtube.com/watch?v=3vC5TsSyNjUに似たビートパッドを作成したいと思います。
キーボードのキーにサウンドを割り当てるのは難しくありませんでした。
<script type="text/javascript" src="js/jquery.playSound.js"></script>
<script type="text/javascript" src="js/jquery.hotkeys.js"></script>
<script type="text/javascript">
$(document).ready(function(){
jQuery(document).bind(
'keydown',
'q',
function(ect){
$.playSound('tracks/basses/bass01.ogg');
});
jQuery(document).bind(
'keydown',
'w',
function(ect){
$.playSound('tracks/drums/clap04.ogg');
});
jQuery(document).bind(
'keydown',
'e',
function(ect){
$.playSound('tracks/beats/rave_hihat02.ogg');
});
jQuery(document).bind(
'keydown',
'r',
function(ect){
$.playSound('tracks/4.wav');
});
}); // End
</script>
キーボードのキーにサウンドをドラッグ/ドロップするにはどうすればよいですか?