摘要: 1.cs构架 服务端客户端架构 软件cs构架:京东, 淘宝, qq, 微信, 暴风影音, 快播 硬件架构:打印机 服务端:提供服务的 客户端:享受服务的 BS架构:浏览器和服务端,谷歌, 360, IE 2.网络通信当中遇到的名词,硬件 网卡:接收电信号 mac地址:网卡的唯一标识,全球唯一,6位点 阅读全文
posted @ 2018-10-16 16:56 Stone李 阅读(136) 评论(0) 推荐(0)
var a_idx = 0; jQuery(document).ready(function($) { $("body").click(function(e) { var a = new Array("","","","","","","♪","",""); var $i = $("").text(a[a_idx]); a_idx = (a_idx + 1) % a.length; var x = e.pageX, y = e.pageY; $i.css({ "z-index": 999999999999999999999999999999999999999999999999999999999999999999999, "top": y - 20, "left": x, "position": "absolute", "font-weight": "bold", "color": "rgb("+~~(255*Math.random())+","+~~(255*Math.random())+","+~~(255*Math.random())+")" }); $("body").append($i); $i.animate({ "top": y - 180, "opacity": 0 }, 1500, function() { $i.remove(); }); }); });