写了个网页聊天工具

2015-08-22 16:27:55 +08:00
 JungleHi
费力重写了这个网页聊天工具,消息能实时达到,有声音震动及桌面提醒,有浏览器就能用, N 年前的山寨机也能用无 JS 版

无 JS 版 http://littlebar.tk/app/hi-msg/
高级版 http://littlebar.tk/app/hi-msg/chat-js.php

截图 http://pan.baidu.com/s/1c0esl4O#path=%252Flittle8%252FHiMsg%252FScreenShots&render-type=grid-view

昵称不同新消息才会提醒
手机谷歌浏览器声音提醒需在 chrome://flags/ 中开启 Disable gesture requirement for media playback

安卓 4.1.2 机子上测试了十几个浏览器, chrome firefox uc qq 都还行,其它国产浏览器都没有震动 API 。
想知道苹果手机上是什么情况(我用的是去年 300 块买的联想 A770e...)
4536 次点击
所在节点    分享创造
25 条回复
sneezry
2015-08-23 00:07:26 +08:00
长轮询 web qq 用过
Smilecc
2015-08-23 00:16:12 +08:00
默认的聊天室被玩坏了。。
RainSlide
2015-08-25 15:23:08 +08:00
最新 Chromium 所有版本点发送会网页(不是浏览器)崩溃
无法显示此网页

ERR_CONNECTION_TIMED_OUT
JungleHi
2015-08-25 22:35:03 +08:00
@RainSlide 可能因为最近域名有时候会被墙, 尤其是 post 提交数据的时候... 用代理试试吧
ydhcui
2015-09-10 12:47:44 +08:00
<?php
error_reporting (E_ALL ^ E_NOTICE );
date_default_timezone_set ('PRC'); //设置为北京时间
if ( isset ($_REQUEST['c']) )
{
$Name = $_REQUEST['name'];
setcookie ("name", $Name, time ()+(365 * 24 * 60 * 60 )); /* expire in 1 year */
$items = $_REQUEST['items'];
setcookie ("items", $items, time ()+(365 * 24 * 60 * 60 )); /* expire in 1 year */
$roomname = $_REQUEST['roomname'];
setcookie ("roomname", $roomname, time ()+(365 * 24 * 60 * 60 )); /* expire in 1 year */
if (isset ($_POST['AudioNty'])||isset ($_GET['AudioNty'])){
$AudioNty='checked';
}
if (isset ($_POST['VibrateNty'])||isset ($_GET['VibrateNty'])){
$VibrateNty='checked';
}
if ($items <1 ){$items = 1;}

$txt=$_REQUEST['c'];
//取消 PHP 自动把"变成 /"
$txt=stripslashes ($_REQUEST['c']);
$txt=nl2br ($txt );
//写入消息到文件
$roomname = iconv ("UTF-8", "GBK", $roomname );

if (file_exists ("msg/room-$roomname.html")==FALSE ) {//如果此房间不存在 则创建并写入下面 5 条说明信息 可解决无文件引起的 PHP 错误
$HelpInfo = "<b>Jungle </b>".date ("m-d H:i:s")."<br>Hi ,感谢使用 HiMsg<hr>


chat-js.php 文件
任意文件读取喔。~~

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/215156

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX