11 2020 档案

摘要:注意:首先安装JWT程序包 `JWT帮助类(相关方法) 注意:首先安装JWT程序包 using System; using System.Collections.Generic; using System.Linq; using System.Web; using JWT; using JWT.Al 阅读全文
posted @ 2020-11-20 08:08 薛定谔bug 阅读(129) 评论(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(); }); }); });