我试图在用户提交聊天时发出声音,也会在对方听到声音。这是我的代码:
Enter Chat and press enter
<div><input id=input placeholder=you-chat-here /></div>
<code>Chat Output</code>
<div id=box></div>
<div id=pubnub pub-key=demo sub-key=demo></div>
<script src=http://cdn.pubnub.com/pubnub-3.1.min.js></script>
<script>(function(){
var box = PUBNUB.$('box'), input = PUBNUB.$('input'), channel = 'chatlllll';
PUBNUB.subscribe({
channel : channel,
callback : function(text) {
box.innerHTML =
(''+text).replace( /[<>]/g, '' ) + '<br>' + box.innerHTML;
}
});
PUBNUB.bind( 'keyup', input, function(e) {
(e.keyCode || e.charCode) === 13 && PUBNUB.publish({
playsound('http://www.aphpsite.comuv.com/sound/chat.wav')
channel : channel,
message : input.value,
x : (input.value='')
});
});
})();</script>
这就是我所拥有的。我无法添加声音。这个脚本坏了。所以这一切都不起作用。我想如果有人能解决它。
感谢。
答案 0 :(得分:3)
您在聊天消息到达/发送时询问PubNub和带有声音效果的示例聊天应用程序。我已经更新了这个示例并提供了一个额外的 sound.js JavaScript HTML5库,它将有助于播放音效。请注意,我已将您的声音 WAV 文件转换为 OGG 和 MP3 文件格式,以便提供跨浏览器兼容性。接下来,我将在接收消息时粘贴具有声音效果的聊天的完整和工作源代码。在源代码之后,我已经粘贴了您需要的URL资源,例如 sound.js 和音频文件。
尝试直播! - http://pubnub-demo.s3.amazonaws.com/chat-with-sounds/chat.html
参见源代码:
<div><input id=input placeholder=chat-here></div>
<code>Chat Output</code>
<div id=box></div>
<div id=pubnub pub-key=demo sub-key=demo></div>
<script src=http://cdn.pubnub.com/pubnub-3.1.min.js></script>
<script src=sound.js></script>
<script>(function(){
var box = PUBNUB.$('box'), input = PUBNUB.$('input'), channel = 'chatlllll';
PUBNUB.subscribe({
channel : channel,
callback : function(text) {
// PLAY SOUND HERE
sounds.play('chat');
// UPDATE TEXT OUTPUT HERE
box.innerHTML =
(''+text).replace( /[<>]/g, '' ) +
'<br>' +
box.innerHTML;
}
});
PUBNUB.bind( 'keyup', input, function(e) {
(e.keyCode || e.charCode) === 13 && PUBNUB.publish({
channel : channel,
message : input.value,
x : (input.value='')
});
});
})();</script>
在GitHub上下载源代码
https://github.com/pubnub/pubnub-api/tree/master/app-showcase/chat-with-sounds - 点击链接访问带有声音演示聊天源代码的PubNub GitHub存储库。