1 Star 0 Fork 0

Bluishoul/grunt-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
get.html 1.06 KB
一键复制 编辑 原始数据 按行查看 历史
Bluishoul 提交于 2013-11-22 00:49 . add touch support
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;"> 
<title>Socket.IO</title>
<style type="text/css">
#output{
position:absolute;
width:100px;
height:100px;
background-color:#3BB5CC;
line-height:100px;
text-align:center;
/*
-transition:all 0.1s ease-in;
-webkit-transition:all 0.1s ease-in;
-ms-transition:all 0.1s ease-in;
-o-transition:all 0.1s ease-in;
-mz-transition:all 0.1s ease-in;
*/
}
</style>
</head>
<body>
<div id="output"></div>
<script type="text/javascript" src="http://www.oschina.net/js/2012/jquery-1.7.1.min.js"></script>
<script type="text/javascript" src="node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.min.js"></script>
<script type="text/javascript">
var socket = io.connect('http://192.168.1.4:80');
socket.emit('get',"hello get!");
socket.on('get',function(data){
$('#output').css({
left:data.x,
top:data.y
})
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/bluishoul/grunt-demo.git
git@gitee.com:bluishoul/grunt-demo.git
bluishoul
grunt-demo
grunt-demo
master

搜索帮助