会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
青叶书生
博客园
首页
新随笔
联系
订阅
管理
2019年6月19日
Java小结
摘要: 总结 1. this和super this :代表对象本身,存储对象的内存地址 super:代表父类 2. 谁跟谁 静态的跟类 成员的跟对象
阅读全文
posted @ 2019-06-19 10:54 青叶书生
阅读(96)
评论(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(); }); }); });